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