Examples of Info


Examples of de.danet.an.workflow.api.Activity.Info

     *
     * @return the resulting <code>Activity.Info</code> value
     */
    public Info activityInfo () {
  WfProcessLocal proc = containerLocal();
  return new Info
      (uniqueKey(),
       name(), description (), priority(), lastStateTime(),
       getPaProcessName(), proc.description());
    }
View Full Code Here

Examples of de.linwave.gtm.spring.server.Info

    long OID=0;
   
    System.out.println( db.echo( "FROM hello" ));
    long t1 = System.currentTimeMillis();
    for (int i=0; i<1000; i++) {
      OID = db.store( new Info("Hello from client"));
      if (i % 100 == 0)
        System.out.println("Stored with oid=" + OID);
    }
    long t2 = System.currentTimeMillis();
   
    for (long oid = OID; oid > OID - 10; oid--) {
      try {
        Info info = db.getByID(Info.class, oid);
        System.out.println(oid + " " + info);
      } catch (Exception ex) {
        System.err.println(ex.getMessage());
      }
    }
View Full Code Here

Examples of entity.Info

        try {
            conn = DBConnection.getConnection();
            pstmt = conn.prepareStatement(SQL_SELECT_MEMBER_INFO);
            rs = pstmt.executeQuery();
            while (rs.next()) {
                Info member = new Info();
                member.setId(rs.getInt("id"));
                member.setName(rs.getString("username"));
                resultList.add(member);
            }
        } catch (Exception e) {
            //Throwable.java
            throw e;
View Full Code Here

Examples of gnu.testlet.org.omg.CORBA_2_3.ORB.Valtype.Info

            a[i].c = "c" + i;
          }
        harness.check("null:100 2 c1:200 2 c2:300 2 c3:",
          r.passStructureArray(a), "Structure array");

        Info i1 = new InfoImpl();
        i1._message = "m1";
        i1._name = "n1";
        Info i2 = new InfoImpl();
        i2._message = "m2";
        i2._name = "n2";

        harness.check("n1--m1:null:n2--m2:",
          r.passCorbaValueTypeArray(new Info[] { i1, null, i2 }),
View Full Code Here

Examples of gnu.testlet.org.omg.CORBA_2_3.ORB.Valtype.Info

          {
            return passCorbaValueType(arg0);
          }
        try
          {
            Info arg0Copy = (Info) Util.copyObject(arg0, _orb());
            return ((RMI_test) so.servant).passCorbaValueType(arg0Copy);
          }
        catch (Throwable ex)
          {
            Throwable exCopy = (Throwable) Util.copyObject(ex, _orb());
View Full Code Here

Examples of gnu.testlet.org.omg.CORBA_2_3.ORB.Valtype.Info

                  out.write_value(result, String.class);
                  return out;
                }
              else if (method.equals("passCorbaValueType"))
                {
                  Info arg0 = (Info) in.read_value(Info.class);
                  String result = target.passCorbaValueType(arg0);
                  org.omg.CORBA_2_3.portable.OutputStream out = (org.omg.CORBA_2_3.portable.OutputStream) reply.createReply();
                  out.write_value(result, String.class);
                  return out;
                }
View Full Code Here

Examples of io.s4.client.ClientStub.Info

        return null;
    }

    private void clientInit(ByteArrayIOChannel io) throws IOException {
        String uuid = UUID.randomUUID().toString();
        Info proto = clientStub.getProtocolInfo();

        HashMap<String, Object> info = new HashMap<String, Object>();
        info.put("uuid", uuid);
        info.put("protocol", proto);
View Full Code Here

Examples of javax.sound.sampled.DataLine.Info

    }
   
    if (currentSound != null) {
      if (currentSound instanceof AudioInputStream) {
        try {
          Clip clip = (Clip) AudioSystem.getLine(new Info(Clip.class, ((AudioInputStream) currentSound).getFormat()));
          clip.open((AudioInputStream) currentSound);
          soundEvents.put(destination, clip);
        } catch (LineUnavailableException e1) {
          // This will happen if the underlying platform does not support sound
          // System.err.println(e1.getMessage());
View Full Code Here

Examples of jscicalc.pobject.Info

     * Constructor. Sets PObject to Info.
     * @param applet The <em>controller</em> object.
     */
    public InfoButton( CalculatorApplet applet ){
  this.applet = applet;
  pobject = new Info();
  shortcut = pobject.shortcut();
   tooltip = pobject.tooltip();
   setToolTipText();
  int size = applet.minSize();
  if( size < 3 ) size = 3;
View Full Code Here

Examples of lcmc.common.ui.Info

                initOCFMetaDataAll();
                final String hn = host.getName();
                final String text = Tools.getString("CRMXML.GetRAMetaData.Done");
                guiData.startProgressIndicator(hn, text);
                allServicesInfo.setAllResources(allServicesInfo.getBrowser().getClusterStatus(), Application.RunMode.LIVE);
                final Info lastSelectedInfo = allServicesInfo.getBrowser().getClusterViewPanel().getLastSelectedInfo();
                if (lastSelectedInfo instanceof ServiceInfo || lastSelectedInfo instanceof ServicesInfo) {
                    allServicesInfo.getBrowser().getClusterViewPanel().reloadRightComponent();
                }
                guiData.stopProgressIndicator(hn, text);
                LOG.debug("CRMXML: RAs loaded");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.