src/java/isac/util/tactics/Tactic.java
author wneuper
Wed, 15 Jun 2005 18:31:02 +0200
branchjava_rename_format
changeset 3922 fcd5648113ca
permissions -rw-r--r--
java: isac.util.tactics .. end renamed, formatted, inst_var_, import cleaned
wneuper@3922
     1
/*
wneuper@3922
     2
 * Created on Sep 11, 2003
wneuper@3922
     3
 *
wneuper@3922
     4
 * To change the template for this generated file go to
wneuper@3922
     5
 * Window>Preferences>Java>Code Generation>Code and Comments
wneuper@3922
     6
 */
wneuper@3922
     7
package isac.util.tactics;
wneuper@3922
     8
wneuper@3922
     9
import isac.util.formulae.CalcElement;
wneuper@3922
    10
import isac.util.formulae.CalcFormula;
wneuper@3922
    11
wneuper@3922
    12
/**
wneuper@3922
    13
 * @author Alan Krempler (method stubs)
wneuper@3922
    14
 *  
wneuper@3922
    15
 */
wneuper@3922
    16
public class Tactic extends CalcElement {
wneuper@3922
    17
wneuper@3922
    18
    protected String name_;
wneuper@3922
    19
wneuper@3922
    20
    public String getName() {
wneuper@3922
    21
        return name_;
wneuper@3922
    22
    }
wneuper@3922
    23
wneuper@3922
    24
    public void setName(String name) {
wneuper@3922
    25
        this.name_ = name;
wneuper@3922
    26
    }
wneuper@3922
    27
wneuper@3922
    28
    public String getDescription() {
wneuper@3922
    29
        return "";
wneuper@3922
    30
    }
wneuper@3922
    31
wneuper@3922
    32
    //FIXME.WN0504 put down in inheritance (valid only for some tacs)
wneuper@3922
    33
    public String getTheoremName() {
wneuper@3922
    34
        return "";
wneuper@3922
    35
    }
wneuper@3922
    36
wneuper@3922
    37
    //FIXME.WN0504 put down in inheritance (valid only for some tacs)
wneuper@3922
    38
    public String getTheoremDescription() {
wneuper@3922
    39
        return "";
wneuper@3922
    40
    }
wneuper@3922
    41
wneuper@3922
    42
    //FIXME.WN0504 put down in inheritance (valid only for some tacs)
wneuper@3922
    43
    public CalcFormula getTheoremSymbolic() {
wneuper@3922
    44
        CalcFormula dummy;
wneuper@3922
    45
        dummy = new CalcFormula();
wneuper@3922
    46
        return dummy;
wneuper@3922
    47
    }
wneuper@3922
    48
wneuper@3922
    49
    //FIXME.WN0504 put down in inheritance (valid only for some tacs)
wneuper@3922
    50
    public CalcFormula getTheoremInstantiated(CalcFormula formula) {
wneuper@3922
    51
        CalcFormula dummy;
wneuper@3922
    52
        dummy = new CalcFormula();
wneuper@3922
    53
        return dummy;
wneuper@3922
    54
    }
wneuper@3922
    55
wneuper@3922
    56
    //FIXME.WN0504 put down in inheritance (valid only for some tacs)
wneuper@3922
    57
    // itself and selected by passing an integer
wneuper@3922
    58
    public CalcFormula makeFillFormula(CalcFormula formula, String pattern) {
wneuper@3922
    59
        CalcFormula dummy;
wneuper@3922
    60
        dummy = new CalcFormula();
wneuper@3922
    61
        return dummy;
wneuper@3922
    62
    }
wneuper@3922
    63
wneuper@3922
    64
    /*
wneuper@3922
    65
     * (non-Javadoc)
wneuper@3922
    66
     * 
wneuper@3922
    67
     * @see isac.util.CalcElement#getText()
wneuper@3922
    68
     */
wneuper@3922
    69
    public String toSMLString() {
wneuper@3922
    70
        // TODO Auto-generated method stub
wneuper@3922
    71
        return null;
wneuper@3922
    72
    }
wneuper@3922
    73
wneuper@3922
    74
    /*
wneuper@3922
    75
     * (non-Javadoc)
wneuper@3922
    76
     * 
wneuper@3922
    77
     * @see isac.util.CalcElement#getMathML()
wneuper@3922
    78
     */
wneuper@3922
    79
    public String getMathML() {
wneuper@3922
    80
        // TODO Auto-generated method stub
wneuper@3922
    81
        return null;
wneuper@3922
    82
    }
wneuper@3922
    83
wneuper@3922
    84
    /*
wneuper@3922
    85
     * (non-Javadoc)
wneuper@3922
    86
     * 
wneuper@3922
    87
     * @see isac.util.CalcElement#getType()
wneuper@3922
    88
     */
wneuper@3922
    89
    public int getType() {
wneuper@3922
    90
        return CALCEL_TACTIC;
wneuper@3922
    91
    }
wneuper@3922
    92
wneuper@3922
    93
}