Beispiel #1
0
 public EntityImpl() throws Exception {
   execute = Outside.service(this, "gus.sys.script1.tool.execute.tag");
   getContent = Outside.service(this, "gus.sys.script1.access.tag.content1");
   getName = Outside.service(this, "gus.sys.script1.access.tag.name0");
   getParams = Outside.service(this, "gus.sys.script1.access.tag.params1");
   evaluate = Outside.service(this, "gus.sys.script1.context.evaluate");
 }
Beispiel #2
0
 public EntityImpl() throws Exception {
   bmp = Outside.service(this, "gus.file.filter.ext.istype.image.bmp");
   gif = Outside.service(this, "gus.file.filter.ext.istype.image.gif");
   jpg = Outside.service(this, "gus.file.filter.ext.istype.image.jpg");
   png = Outside.service(this, "gus.file.filter.ext.istype.image.png");
   tiff = Outside.service(this, "gus.file.filter.ext.istype.image.tiff");
 }
Beispiel #3
0
  public EntityImpl() throws Exception {
    bar = Outside.service(this, "gus.app.mainframe.menubar");
    menuBar = (JMenuBar) bar.i();

    add(Outside.service(this, "gus.appli.laboscript.menu.menu1"));

    menuBar.repaint();
  }
Beispiel #4
0
  public EntityImpl() throws Exception {
    findIcon = Outside.service(this, "gus.find.icon");
    findColor = Outside.service(this, "gus.find.color");
    findFont = Outside.service(this, "gus.find.font");

    color = DEFAULT_COLOR;
    font = DEFAULT_FONT;
  }
Beispiel #5
0
  public EntityImpl() throws Exception {
    map = new HashMap();

    put("invert", Outside.service(this, "gus.string.transform.character.order.invert"));
    put("permute", Outside.service(this, "gus.string.transform.character.order.permute"));
    put("permuteinv", Outside.service(this, "gus.string.transform.character.order.permute.inv"));
    put("shuffle", Outside.service(this, "gus.string.transform.character.order.shuffle"));
    put("sort", Outside.service(this, "gus.string.transform.character.order.sort"));
  }
Beispiel #6
0
  public EntityImpl() throws Exception {
    readFile = Outside.service(this, "gus.file.read.properties");
    writeFile = Outside.service(this, "gus.file.write.properties");

    storeDir = (File) Outside.resource(this, "defaultdir");
    propFile = new File(storeDir, FILENAME);

    if (propFile.exists()) map = (Map) readFile.t(propFile);
  }
Beispiel #7
0
  public EntityImpl() throws Exception {
    viewer1 = Outside.service(this, "*gus.sys.base1.gui.viewer1");
    viewer2 = Outside.service(this, "*gus.sys.base1.gui.viewer2");
    search1 = Outside.service(this, "*gus.sys.base1.gui.search1");

    tab = new JTabbedPane();
    tab.addTab("ID View", (JComponent) viewer1.i());
    tab.addTab("Field View", (JComponent) viewer2.i());
    tab.addTab("Search View", (JComponent) search1.i());
  }
Beispiel #8
0
  public EntityImpl() throws Exception {
    findCaretWord = Outside.service(this, "gus.swing.textcomp.caretword.find");
    replaceCaretWord = Outside.service(this, "gus.swing.textcomp.caretword.replace");
    dialog = Outside.service(this, "gus.input.choose.dialog");
    getOpMap = Outside.service(this, "gus.sys.expression1.apply.opmap");

    Map map = (Map) getOpMap.g();

    names = new ArrayList(map.keySet());
    Collections.sort(names);
  }
Beispiel #9
0
  public EntityImpl() throws Exception {
    tabHolder = Outside.service(this, "*gus.swing.tabbedpane.holder1");

    mainViewer = Outside.service(this, "*gus.app.main.gui.viewer");
    rbViewer = Outside.service(this, "*gus.app.main.rb.gui.viewer");
    propViewer = Outside.service(this, "*gus.app.prop.gui.viewer");
    pathViewer = Outside.service(this, "*gus.app.path.gui.viewer");

    tabHolder.v("All", mainViewer.i());
    tabHolder.v("RB", rbViewer.i());
    tabHolder.v("Prop", propViewer.i());
    tabHolder.v("Path", pathViewer.i());
  }
Beispiel #10
0
  public EntityImpl() throws Exception {
    formPanel = Outside.service(this, "*gus.swing.panel.formpanel");
    findFeatures = Outside.service(this, "gus.app.entity.objtofeatures");
    findName = Outside.service(this, "entityobjtoname");

    labelName = new JLabel(" ");
    labelDate = new JLabel(" ");
    labelFeatures = new JLabel(" ");

    formPanel.v("Entity name", labelName);
    formPanel.v("Creation date", labelDate);
    formPanel.v("Features", labelFeatures);
  }
Beispiel #11
0
  public EntityImpl() throws Exception {
    okCancel = Outside.service(this, "gus.swing.dialog.blocked1.okcancel");
    selector = Outside.service(this, "*gus.sys.listchooser1.gui.selector1");
    buildLabelTitle = Outside.service(this, "gus.swing.label.build.titlelabel1");

    selectorComp = (JComponent) selector.i();
    labelTitle = (JLabel) buildLabelTitle.i();

    panel = new JPanel(new BorderLayout());
    panel.add(labelTitle, BorderLayout.NORTH);
    panel.add(selectorComp, BorderLayout.CENTER);

    selector.addActionListener(this);
  }
Beispiel #12
0
  public EntityImpl() throws Exception {
    pipe_t = Outside.service(this, "gus.feature.op.pipe.t");
    pipe_h = Outside.service(this, "gus.feature.op.pipe.h");
    pipe_map = Outside.service(this, "gus.feature.op.pipe.map");
    pipe_list = Outside.service(this, "gus.feature.op.pipe.list");

    loop_t = Outside.service(this, "gus.feature.op.loop.t");
    loop_h = Outside.service(this, "gus.feature.op.loop.h");

    toArray_t = Outside.service(this, "gus.convert.objarraytotarray.strict");
    toArray_h = Outside.service(this, "gus.convert.objarraytoharray.strict");
    toArray_map = Outside.service(this, "gus.convert.objarraytomaparray.strict");
    toArray_list = Outside.service(this, "gus.convert.objarraytolistarray.strict");
  }
Beispiel #13
0
  public EntityImpl() throws Exception {
    factory = Outside.service(this, "gus.io.printstream.factory.multi.hist");

    p1 = (PrintStream) factory.g();
    ((P) p1).p(System.err);
    System.setErr(p1);
  }
Beispiel #14
0
  public EntityImpl() throws Exception {
    mapCompleteK = Outside.service(this, "gus.data.compare.map.completekey");
    mapCompleteKV = Outside.service(this, "gus.data.compare.map.completekeyvalue");
    mapIncompleteK = Outside.service(this, "gus.data.compare.map.incompletekey");
    mapIncompleteKV = Outside.service(this, "gus.data.compare.map.incompletekeyvalue");

    setComplete = Outside.service(this, "gus.data.compare.set.complete");
    setIncomplete = Outside.service(this, "gus.data.compare.set.incomplete");
  }
Beispiel #15
0
  public EntityImpl() throws Exception {
    accessImage = Outside.service(this, "gus.clipboard.access.image");
    accessListFiles = Outside.service(this, "gus.clipboard.access.listfiles");
    accessString = Outside.service(this, "gus.clipboard.access.string");

    convertImage = Outside.service(this, "gus.sys.clipboard1.g.listfiles.convertimage");
    convertString = Outside.service(this, "gus.sys.clipboard1.g.listfiles.convertstring");
    openList = Outside.service(this, "gus.awt.desktop.open.listfiles");
  }
Beispiel #16
0
 public EntityImpl() throws Exception {
   builder = Outside.service(this, "gus.filter.string.build.endswith");
   perform = Outside.service(this, "gus.data.perform.findall");
 }
Beispiel #17
0
 public EntityImpl() throws Exception {
   findObj = Outside.service(this, "gus.sys.store.obj.find");
   custComp = Outside.service(this, "gus.swing.comp.cust3.map1");
 }
Beispiel #18
0
 public EntityImpl() throws Exception {
   listing = Outside.service(this, "gus.dir.listing0.names");
 }
Beispiel #19
0
 public EntityImpl() throws Exception {
   builder = Outside.service(this, "gus.sys.expression1.builder2.f");
   perform = Outside.service(this, "gus.list.findfirst");
 }
Beispiel #20
0
 public EntityImpl() throws Exception {
   buildInbox = Outside.service(this, "gus.mail.store.inbox.builder");
   askInfos = Outside.service(this, "gus.security.askinfo.loginpassword1");
   messageToTimeStamp = Outside.service(this, "gus.mail.retrieve.message.totimestamp");
   writeEml = Outside.service(this, "gus.dir.access.write.eml.autorename");
 }
Beispiel #21
0
 public EntityImpl() throws Exception {
   repaintLabel = Outside.service(this, "gus.swing.label.cust2.display");
 }
Beispiel #22
0
 public EntityImpl() throws Exception {
   builder = Outside.service(this, "gus.filter.string.build.contains_n");
   perform = Outside.service(this, "gus.map.value.removeall");
 }
Beispiel #23
0
 public EntityImpl() throws Exception {
   fileToImage = Outside.service(this, "gus.file.read.image.generic");
   writeImage = Outside.service(this, "gus.file.write.image.jai.bmp");
 }
Beispiel #24
0
 public EntityImpl() throws Exception {
   check = Outside.service(this, "gus.time.date.is.m04.april");
   findDate = Outside.service(this, "gus.find.date");
 }
Beispiel #25
0
 public EntityImpl() throws Exception {
   buildWaitPanel = Outside.service(this, "gus.swing.panel.build.waitpanel1");
   errGuiBuilder = Outside.service(this, "errguibuilder");
   manager = Outside.service(this, "gus.sys.async.manager");
   findComp = Outside.service(this, "gus.find.jcomponent");
 }
Beispiel #26
0
 public EntityImpl() throws Exception {
   perform = Outside.service(this, "gus.data.perform.addnew");
 }
Beispiel #27
0
 public EntityImpl() throws Exception {
   builder = Outside.service(this, "gus.filter.string.build.endswith");
   filterInv = Outside.service(this, "gus.feature.op.filter.inv");
   perform = Outside.service(this, "gus.map.value.filter");
 }
Beispiel #28
0
  public EntityImpl() throws Exception {
    execute = Outside.service(this, "gus.appli.gusclient1.execute.gus.compileall");
    buildAction = Outside.service(this, "gus.swing.action.builder1");

    action = (Action) buildAction.t(new Object[] {DISPLAY, this});
  }
Beispiel #29
0
 public EntityImpl() throws Exception {
   rename = Outside.service(this, "gus.jdbc.mysql.perform.db.rename");
   dialog = Outside.service(this, "gus.input.text.dialog");
 }
Beispiel #30
0
 public EntityImpl() throws Exception {
   perform = Outside.service(this, "gus.jdbc.mysql.perform.select.c1");
   rsToListMap = Outside.service(this, "gus.jdbc.resultset.toobjectlist1");
 }