Package chemaxon.standardizer
Class StandardizerActionFactory.StandardizerClassDescriptor
- java.lang.Object
-
- chemaxon.standardizer.StandardizerActionFactory.StandardizerClassDescriptor
-
- Enclosing class:
- StandardizerActionFactory
public static class StandardizerActionFactory.StandardizerClassDescriptor extends Object
Descriptor of a standardizer class- Since:
- 6.0
-
-
Constructor Summary
Constructors Constructor Description StandardizerClassDescriptor()
Initializes an empty standardizer class descriptorStandardizerClassDescriptor(String id, String className, String jar, String editorClassName)
Initializes a standardizer class descriptor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getClassName()
Gets the name of the standardizer classString
getEditorClassName()
Gets the name of the editor of the standardizer classString
getID()
Gets the id of the standardizer classString
getJar()
Gets the jar containing the standardizer classvoid
setClassName(String className)
Sets the name of the standardizer classvoid
setEditorClassName(String editorClassName)
Sets the name of the editor of the standardizer classvoid
setID(String id)
Sets the id of the standardizer classvoid
setJar(String path)
Sets the path of the jar containing the standardizer classString
toString()
-
-
-
Constructor Detail
-
StandardizerClassDescriptor
public StandardizerClassDescriptor()
Initializes an empty standardizer class descriptor
-
StandardizerClassDescriptor
public StandardizerClassDescriptor(String id, String className, String jar, String editorClassName)
Initializes a standardizer class descriptor- Parameters:
id
- the identifier of the classclassName
- the name of the class of the standardizerjar
- the container of the classeditorClassName
- the name of the class of the editor component for the standardizer
-
-
Method Detail
-
setID
public void setID(String id)
Sets the id of the standardizer class- Parameters:
id
- the id of the standardizer class
-
getID
public String getID()
Gets the id of the standardizer class- Returns:
- the id of the standardizer class
-
getClassName
public String getClassName()
Gets the name of the standardizer class- Returns:
- the name of the standardizer class
-
getJar
public String getJar()
Gets the jar containing the standardizer class- Returns:
- the jar containing the standardizer class
-
setClassName
public void setClassName(String className)
Sets the name of the standardizer class- Parameters:
className
- the name of the standardizer class
-
setJar
public void setJar(String path)
Sets the path of the jar containing the standardizer class- Parameters:
path
- the path of the jar containing the standardizer class
-
getEditorClassName
public String getEditorClassName()
Gets the name of the editor of the standardizer class- Returns:
- the name of the editor of the standardizer class
-
setEditorClassName
public void setEditorClassName(String editorClassName)
Sets the name of the editor of the standardizer class- Parameters:
editorClassName
- the name of the editor of the standardizer class
-
-