Package org.kite9.diagram.primitives

Examples of org.kite9.diagram.primitives.DiagramElement


    }
   
    Filter<Object> includedArrows = new Filter<Object>() {

      public boolean accept(Object o) {
        DiagramElement de = db.getInsertionInterface().returnExisting(o);
        if ((de instanceof Arrow) && (hierarchyContainers.contains(((Arrow)de).getContainer()))) {
          return true;
        } else {
          return false;
        }
      }
    };
   
    Filter<Object> includedGlyphs = new Filter<Object>() {
      public boolean accept(Object o) {
        DiagramElement de = db.getInsertionInterface().returnExisting(o);
        if ((de instanceof Glyph) && (hierarchyContainers.contains(((Glyph)de).getContainer()))) {
          return true;
        } else {
          return false;
        }
View Full Code Here


    }

    for (Transition t : provider.getTransitions()) {
      if (t != null) {
        SimpleNoun o = t.getTransition();
        DiagramElement body = transitionFormat.returnElement(c, o, db.getInsertionInterface());
     
        for (SimpleNoun from : t.getFromStates()) {
          DiagramElement fromEl = db.getInsertionInterface().returnExisting(from);
          db.getInsertionInterface().returnConnection(fromEl, body, null, null, null, false, null);
        }

        for (SimpleNoun to : t.getToStates()) {
          DiagramElement toEl = db.getInsertionInterface().returnExisting(to);
          db.getInsertionInterface().returnConnection(body, toEl, null, null, null, true, null);
        }
      }
    }
  }
View Full Code Here

  public static NounFormat asContext(final boolean border,
      final Layout d, final Label l) {
    return new NounFormat() {
      public Connected returnElement(Container c, SimpleNoun to,
          InsertionInterface ii) {
        Label toUse = (l == null) ? (to.getLabel() == null ? null
            : new TextLine(to.getLabel())) : l;
        DiagramElement de = ii.returnContext(c, to, border ? toUse
            : null, border, d);
        if (de instanceof Connected) {
          return (Connected) de;
View Full Code Here

  public Key(String boldText, String bodyText, List<Symbol> symbols) {
    this(convert(symbols), boldText, bodyText);
  }

  public Key(List<TextLine> symbols, String boldText, String bodyText) {
    this.boldText = new StyledText(boldText);
    this.bodyText = new StyledText(bodyText);
    this.symbols = symbols;
    for (TextLine textLine : symbols) {
      textLine.setParent(this);
    }
  }
View Full Code Here

  }

  protected Kite9Context ctx = createContext();

  protected static Kite9Context createContext() {
    Aliaser a = new PropertyAliaser();
    Repository<File> r = new BasicFileRepository();
    Kite9ContextImpl out = new Kite9ContextImpl(a, r);
    out.setClassPath("target/classes" + File.pathSeparator + "target/test-classes");
//    out.setProjectId(35);
//    out.setSecretKey("PFB9T1V97AK96WFK");
View Full Code Here

  }

  protected Kite9Context ctx = createContext();

  protected static Kite9Context createContext() {
    Aliaser a = new PropertyAliaser();
    Repository<File> r = new BasicFileRepository();
    Kite9ContextImpl out = new Kite9ContextImpl(a, r);
    out.setClassPath("target/classes" + File.pathSeparator + "target/test-classes");
//    out.setProjectId(35);
//    out.setSecretKey("PFB9T1V97AK96WFK");
View Full Code Here

    if (in instanceof SimpleNoun) {
      return ((SimpleNoun) in).getLabel();
    }

    throw new Kite9ProcessingException("Can't process this noun" + in);

  }
View Full Code Here

        }

        if (de instanceof Connected) {
          return (Connected) de;
        } else {
          throw new Kite9ProcessingException(
              "Was expecting a connected: " + de);
        }
      }
    };
  }
View Full Code Here

        DiagramElement de = ii.returnConnectionBody(c, to, to.getLabel());

        if (de instanceof Connected) {
          return (Connected) de;
        } else {
          throw new Kite9ProcessingException(
              "Was expecting a connected: " + de);
        }
      }
    };
  }
View Full Code Here

        DiagramElement de = ii.returnContext(c, to, border ? toUse
            : null, border, d);
        if (de instanceof Connected) {
          return (Connected) de;
        } else {
          throw new Kite9ProcessingException(
              "Was expecting a connected: " + de);
        }
      }
    };
  }
View Full Code Here

TOP

Related Classes of org.kite9.diagram.primitives.DiagramElement

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.