25 lines
600 B
TypeScript
25 lines
600 B
TypeScript
import {State} from "./State";
|
|
import {SimpleTransition} from "./SimpleTransition";
|
|
import {Transition} from "./Transition";
|
|
|
|
export class SimpleState extends State<SimpleTransition> {
|
|
stateLabel: string = "";
|
|
stateDescription: string = "";
|
|
|
|
|
|
constructor(stateLabel: string, stateDescription: string) {
|
|
super();
|
|
this.stateLabel = stateLabel;
|
|
this.stateDescription = stateDescription;
|
|
}
|
|
|
|
equals(state: State<Transition<any>>): boolean {
|
|
if(!(state instanceof SimpleState)) {
|
|
return false;
|
|
}
|
|
return this.stateLabel === (state as SimpleState).stateLabel;
|
|
}
|
|
|
|
|
|
}
|