KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > agentis > jmi > apml > ProcessVariables


1 package net.agentis.jmi.apml;
2
3 public interface ProcessVariables extends javax.jmi.reflect.RefAssociation {
4     public boolean exists(net.agentis.jmi.apml.ProcessVariable variables, net.agentis.jmi.apml.Process process);
5     public java.util.Collection JavaDoc getVariables(net.agentis.jmi.apml.Process process);
6     public net.agentis.jmi.apml.Process getProcess(net.agentis.jmi.apml.ProcessVariable variables);
7     public boolean add(net.agentis.jmi.apml.ProcessVariable variables, net.agentis.jmi.apml.Process process);
8     public boolean remove(net.agentis.jmi.apml.ProcessVariable variables, net.agentis.jmi.apml.Process process);
9 }
10
Popular Tags