Пример #1
0
 protected InteractorStandIn(WorkSpace w, Node n)
     : base(w, n)
 {
 }
Пример #2
0
 public static new StandIn AllocateStandIn(WorkSpace w, Node n)
 {
     StandIn si = new InteractorStandIn(w, n);
     si.createStandIn();
     return si;
 }
Пример #3
0
 protected void prepareAnnotationPlacement(List<Decorator> decorators, Node[] reflow, int reflowCount,
     List<Decorator> allDecorators, WorkSpace workSpace, ref int widest, ref int tallest)
 {
     throw new Exception("Not Yet Implemented");
 }
Пример #4
0
 public bool entireGraph(WorkSpace workspace, List<Node> nodes, List<Decorator> decorators)
 {
     throw new Exception("Not Yet Implemented");
 }
Пример #5
0
 /// <summary>
 /// Manipulate the standin for this node.
 /// </summary>
 /// <param name="w"></param>
 /// <returns></returns>
 public StandIn newStandIn(WorkSpace w)
 {
     standin = SIAllocatorDictionary.theSIAllocatorDictionary.allocate(
         getNameSymbol(), w, this);
     return standin;
 }
Пример #6
0
 public static new StandIn AllocateStandIn(WorkSpace w, Node node)
 {
     StandIn si = new LabeledStandIn(w, node);
     si.createStandIn();
     return si;
 }
Пример #7
0
 protected LabeledStandIn(WorkSpace w, Node node)
     : base(w, node)
 {
 }
Пример #8
0
 // Not implemented
 public static StandIn AllocateStandIn(WorkSpace w, Node n)
 {
     throw new Exception("Not Yet Implemented");
 }
Пример #9
0
 // ... drag n drop stuff was here
 protected StandIn(WorkSpace w, Node n)
 {
     throw new Exception("Not Yet Implemented");
 }