Пример #1
0
  public JsonType(JEVisType jtype) {
    try {
      name = jtype.getName();
      primitiveType = jtype.getPrimitiveType();
      GUIDisplayType = jtype.getGUIDisplayType();
      description = jtype.getDescription();
      GUIPosition = jtype.getGUIPosition();

    } catch (JEVisException ex) {
      Logger.getLogger(JsonType.class.getName()).log(Level.SEVERE, null, ex);
    }
  }