Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The following ALH API checks whether a particular object is in a specific state name.
 

Code Block
languagetext
public boolean inState(Object_ object, String stateName) {
	... 
} 

public boolean inState(String stateName) {
...
}

 

Unless the object is specified, it will use the current active object, for example:

...