Package ch.ethz.prose.query

Examples of ch.ethz.prose.query.Tuple


  public synchronized void allAspects() throws RemoteException,IllegalUserInputException {
    checkIsConnected();
    table = new Vector();
    Iterator i = exMngr.allAspects().iterator();
    while (i.hasNext()) {
      table.add(new Tuple((AspectSurrogate)i.next(), null, null));
    }
    convertDataForGUI();
    updateTable(data);
  }
View Full Code Here


    checkIsConnected();

    table = new Vector();
    Iterator i = ((RemoteAspectManager)exMngr).allJoinpoints().iterator();
    while(i.hasNext())
      table.add(new Tuple(null, null, (JoinPointRequestSurrogate)i.next()));
    //    table = exMngr.queryAspects(exMngr.getAllAspects(), SELECT_JOINPOINT, BY_JOINPOINT);
    convertDataForGUI();
    updateTable(data);
  }
View Full Code Here

        data.add(dataElement);
      }
      else // basicIndex + i < data.size() -1
      data.set(basicIndex + i, dataElement);

      Tuple tup = new Tuple(null, null, (JoinPointRequestSurrogate)pasteList.get(i));
      table.add(tup);

      if (pastedCells == null)
        pastedCellsTmp[i] = basicIndex +i;
      else
View Full Code Here

        pae.add(e);
        continue;
      }


      Tuple tup = new Tuple(aspectSur, null, null);
      table.add(tup);

      Vector dataElement = new Vector();
      dataElement.add(aspectSur);
      dataElement.add(null);
View Full Code Here

TOP

Related Classes of ch.ethz.prose.query.Tuple

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.