X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fext%2Fedu%2Fucsf%2Frbvi%2Fstrucviz2%2FChimeraStructuralObject.java;fp=src%2Fext%2Fedu%2Fucsf%2Frbvi%2Fstrucviz2%2FChimeraStructuralObject.java;h=64568a7027bc89e47e4736ec7cf3e679c49af1e7;hb=9623cea766a766683243235557ad48e6f7659e6a;hp=1678317de1d6d9c31b6e4066b306effd239f32c6;hpb=6066400ed6b0fe288ebbea82389f59838a534706;p=jalview.git diff --git a/src/ext/edu/ucsf/rbvi/strucviz2/ChimeraStructuralObject.java b/src/ext/edu/ucsf/rbvi/strucviz2/ChimeraStructuralObject.java index 1678317..64568a7 100644 --- a/src/ext/edu/ucsf/rbvi/strucviz2/ChimeraStructuralObject.java +++ b/src/ext/edu/ucsf/rbvi/strucviz2/ChimeraStructuralObject.java @@ -32,81 +32,81 @@ */ package ext.edu.ucsf.rbvi.strucviz2; -import java.lang.String; import java.util.List; /** - * This interface provides a common set of methods that are implemented by the ChimeraModel, - * ChimeraChain, and ChimeraResidue classes. + * This interface provides a common set of methods that are implemented by the + * ChimeraModel, ChimeraChain, and ChimeraResidue classes. * * @author scooter * */ -public interface ChimeraStructuralObject { +public interface ChimeraStructuralObject +{ - /** - * Return the Chimera selection specification for this object - * - * @return a String representing a Chimera atom-spec - */ - public String toSpec(); + /** + * Return the Chimera selection specification for this object + * + * @return a String representing a Chimera atom-spec + */ + public String toSpec(); - /** - * Return a String representation for this object - * - * @return a String representing the object name - */ - public String toString(); + /** + * Return a String representation for this object + * + * @return a String representing the object name + */ + public String toString(); - /** - * Return the userData for this object - * - * @return an Object representing the userData (usually TreePath) - */ - public Object getUserData(); + /** + * Return the userData for this object + * + * @return an Object representing the userData (usually TreePath) + */ + public Object getUserData(); - /** - * Set the userData for this object - * - * @param userData - * the Object representing the userData (usually TreePath) - */ - public void setUserData(Object userData); + /** + * Set the userData for this object + * + * @param userData + * the Object representing the userData (usually TreePath) + */ + public void setUserData(Object userData); - /** - * Return the ChimeraModel for this object - * - * @return the ChimeraModel this object is part of - */ - public ChimeraModel getChimeraModel(); + /** + * Return the ChimeraModel for this object + * + * @return the ChimeraModel this object is part of + */ + public ChimeraModel getChimeraModel(); - /** - * Set the "selected" state of this object - * - * @param selected - * boolean value as to whether this object is selected - */ - public void setSelected(boolean selected); + /** + * Set the "selected" state of this object + * + * @param selected + * boolean value as to whether this object is selected + */ + public void setSelected(boolean selected); - /** - * Get the "selected" state of this object - * - * @return the selected state of this object - */ - public boolean isSelected(); + /** + * Get the "selected" state of this object + * + * @return the selected state of this object + */ + public boolean isSelected(); - /** - * Get the selected state of this object and its children. - * - * @return true if any child is selected. - */ - public boolean hasSelectedChildren(); + /** + * Get the selected state of this object and its children. + * + * @return true if any child is selected. + */ + public boolean hasSelectedChildren(); - /** - * Get the children of this object (if any) - * - * @return the children of the object - */ - public List getChildren(); + /** + * Get the children of this object (if any) + * + * @return the children of the object + */ + public List getChildren(); }