public TextEditor()
 {
     state = new NormalCaseWriting();
 }
 public void SetState(ITextEditorState state)
 {
     this.state = state;
 }
 public TextEditor(ITextEditorState s)
 {
     State = s;
 }