Example #1
0
 public void TranslateUp()
 {
     this.insertCommand = null;
     this.preSiblingPointer = preSiblingPointer.Previous;
 }
Example #2
0
 public void TranslateDown()
 {
     this.insertCommand = null;
     this.preSiblingPointer = preSiblingPointer.Next ?? preSiblingPointer;
 }
Example #3
0
 public void GoButtom()
 {
     this.insertCommand = InsertCommand.Last;
 }
Example #4
0
 public void GoTop()
 {
     this.insertCommand = InsertCommand.First;
 }
Example #5
0
        public LinkedBuilderContext(NodeTreeParser parser, LinkedBuilderContext parent, INodeBuilder builder)
        {
            this.parser = parser;
            this.parent = parent;
            this.builder = builder;
            this.childs = new LinkedList<LinkedBuilderContext>();

            this.insertCommand = InsertCommand.Last;

            this.contextId = _lastId++;
        }