public class ShowVariablesHelper
extends java.lang.Object
Constructor and Description |
---|
ShowVariablesHelper() |
Modifier and Type | Method and Description |
---|---|
void |
addAbstractFillerToShow(java.lang.String roleName)
Shows the membership degree to some atomic concepts of the fillers of an
abstract role.
|
void |
addAbstractFillerToShow(java.lang.String roleName,
java.lang.String indName)
Shows the membership degree to some atomic concepts of the fillers of an
abstract role for some individual.
|
void |
addConceptToShow(java.lang.String concName)
Show membership degree of every instance of an atomic concept.
|
void |
addConcreteFillerToShow(java.lang.String fName)
Shows the value of the fillers of a concrete feature.
|
void |
addConcreteFillerToShow(java.lang.String fName,
java.lang.String indName)
Shows the value of the fillers of a concrete feature for an individual.
|
void |
addConcreteFillerToShow(java.lang.String fName,
java.lang.String indName,
java.util.ArrayList<FuzzyConcreteConcept> ar)
Shows the membership degree to some fuzzy concrete concepts (representing
linguistic labels of the feature), for the fillers of a concrete feature
of an individual.
|
void |
addIndividualToShow(java.lang.String indName)
Shows the value of an individual to every atomic concept.
|
void |
addVariable(Variable var,
java.lang.String nameToShow)
Add a variable to shown, showing it with a given name.
|
ShowVariablesHelper |
clone()
Gets a copy of the object.
|
java.util.ArrayList<FuzzyConcreteConcept> |
getLabels(java.lang.String varName)
Gets the fuzzy concrete concepts marked to be shown for a variable.
|
java.lang.String |
getName(Variable var)
Gets the name of a variable.
|
java.util.Collection<Variable> |
getVariables()
Gets the variables to be shown.
|
boolean |
showAbstractRoleFillers(java.lang.String roleName,
java.lang.String indName)
Returns whether a given individuals is marked for showing every filler of
an abstract role.
|
boolean |
showConcepts(java.lang.String conceptName)
Returns whether an atomic concept is marked to show the membership degree
of every individual.
|
boolean |
showConcreteFillers(java.lang.String fName,
java.lang.String indName)
Returns whether a given individuals is marked for showing every filler of
a concrete feature.
|
boolean |
showIndividuals(java.lang.String indName)
Gets whether an individual is marked to be shown or not.
|
boolean |
showVariable(Variable var)
Shows the value of a variable.
|
public ShowVariablesHelper clone()
clone
in class java.lang.Object
public java.lang.String getName(Variable var)
var
- Variable.public boolean showVariable(Variable var)
var
- Variable.public void addIndividualToShow(java.lang.String indName)
indName
- Name of the individual.public boolean showIndividuals(java.lang.String indName)
indName
- Name of the individual.public void addConcreteFillerToShow(java.lang.String fName)
fName
- Name of the concrete feature.public void addConcreteFillerToShow(java.lang.String fName, java.lang.String indName)
fName
- Name of the concrete feature.indName
- Name of the individual.public void addConcreteFillerToShow(java.lang.String fName, java.lang.String indName, java.util.ArrayList<FuzzyConcreteConcept> ar)
fName
- Name of the concrete feature.indName
- Name of the individual.ar
- Array of fuzzy concrete concepts.public java.util.ArrayList<FuzzyConcreteConcept> getLabels(java.lang.String varName)
varName
- Name of the variable, e.g. feature1(ind1).public void addAbstractFillerToShow(java.lang.String roleName)
roleName
- Name of the abstract role.public void addAbstractFillerToShow(java.lang.String roleName, java.lang.String indName)
roleName
- Name of the abstract role.indName
- Name of the individual.public boolean showConcreteFillers(java.lang.String fName, java.lang.String indName)
fName
- Name of the concrete feature.indName
- Name of the individual.public boolean showAbstractRoleFillers(java.lang.String roleName, java.lang.String indName)
roleName
- Name of the abstract role.indName
- Name of the individual.public void addConceptToShow(java.lang.String concName)
concName
- Name of atomic concept.public boolean showConcepts(java.lang.String conceptName)
conceptName
- Name of atomic concept.public void addVariable(Variable var, java.lang.String nameToShow)
var
- Variable.nameToShow
- Name of the variable when shown.public java.util.Collection<Variable> getVariables()