Searched refs:CompoundTerm (Results 1 - 25 of 35) sorted by relevance

12

/barrelfish-master/usr/eclipseclp/JavaInterface/src/com/parctechnologies/eclipse/
H A DCompoundTerm.java24 //Version: $Id: CompoundTerm.java,v 1.1 2006/09/23 01:54:08 snovello Exp $
42 public interface CompoundTerm interface
H A DEclipseConnection.java59 * @return a <i>CompoundTerm</i> representing the goal, with any variables
62 public CompoundTerm rpc(String goal) throws EclipseException, IOException;
66 * @param goal the goal represented as a <i>CompoundTerm</i>.
73 * @return a <i>CompoundTerm</i> representing the goal, with any variables
76 public CompoundTerm rpc(CompoundTerm goal) throws EclipseException, IOException;
181 * @see EclipseConnection#rpc(CompoundTerm)
185 public CompoundTerm rpc(String functor, Object arg1) throws EclipseException, IOException;
190 * @see EclipseConnection#rpc(CompoundTerm)
194 public CompoundTerm rp
[all...]
H A DAbstractCompoundTerm.java27 //Description: Superclass for user-defined objects which implement CompoundTerm.
32 * {@link CompoundTerm} interface. <p>
34 * {@link CompoundTerm}. This abstract class provides some of the methods required.
35 * @see CompoundTerm
38 public abstract class AbstractCompoundTerm implements CompoundTerm
78 * iff the parameter Object implements CompoundTerm and its functor and arity
85 if(!(obj instanceof CompoundTerm))
89 CompoundTerm ct = (CompoundTerm) obj;
H A DAtom.java32 * implements the CompoundTerm interface (it has 0 arguments), so it can be
35 * @see CompoundTerm
37 public class Atom extends AbstractCompoundTerm implements CompoundTerm
49 * Note that a "throws" clause in the <i>CompoundTerm</i> interface is unnecessary
H A DEclipseMultitaskConnectionImpl.java86 public CompoundTerm rpc(String goal) throws EclipseException, IOException {
95 public CompoundTerm rpc(CompoundTerm goal) throws EclipseException, IOException {
121 CompoundTerm call = new CompoundTermImpl("os_file_name" , null , f.getAbsolutePath() );
125 public CompoundTerm rpc(String functor, Object arg1) throws EclipseException, IOException {
129 public CompoundTerm rpc(String functor, Object arg1,
134 public CompoundTerm rpc(String functor, Object arg1,
139 public CompoundTerm rpc(String functor, Object arg1,
144 public CompoundTerm rpc(String functor, Object arg1,
150 public CompoundTerm rp
[all...]
H A DEclipseConnectionImpl.java303 CompoundTerm call = new CompoundTermImpl("os_file_name" , null , f.getAbsolutePath() );
308 public synchronized CompoundTerm rpc(String goal) throws EclipseException,
316 public CompoundTerm rpc(String functor, Object arg1) throws EclipseException, IOException
322 public CompoundTerm rpc(String functor, Object arg1,
329 public CompoundTerm rpc(String functor, Object arg1,
336 public CompoundTerm rpc(String functor, Object arg1,
343 public CompoundTerm rpc(String functor, Object arg1,
351 public CompoundTerm rpc(String functor, Object[] args) throws EclipseException, IOException
357 public CompoundTerm rpc(Object[] goalTerm) throws EclipseException, IOException
363 public synchronized CompoundTerm rp
[all...]
H A DOutOfProcessEclipse.java364 public CompoundTerm rpc(String goal) throws EclipseException, IOException
369 public CompoundTerm rpc(CompoundTerm goal) throws EclipseException, IOException
399 public CompoundTerm rpc(String functor, Object arg1) throws EclipseException, IOException
404 public CompoundTerm rpc(String functor, Object arg1,
410 public CompoundTerm rpc(String functor, Object arg1,
416 public CompoundTerm rpc(String functor, Object arg1,
423 public CompoundTerm rpc(String functor, Object arg1,
430 public CompoundTerm rpc(String functor, Object[] args) throws EclipseException, IOException
435 public CompoundTerm rp
[all...]
H A DRemoteEclipse.java245 CompoundTerm protocolTerm =
406 CompoundTerm result1 = null;
414 result1 = (CompoundTerm) readControl();
456 CompoundTerm result2 = null;
480 result2 = (CompoundTerm) readControl();
514 CompoundTerm result1 = null;
522 result1 = (CompoundTerm) readControl();
567 CompoundTerm result2 = null;
588 result2 = (CompoundTerm) readControl();
622 CompoundTerm result
[all...]
H A DEXDROutputStream.java41 * Java <i>CompoundTerm</i> objects and instances of other relevant Java classes into EXDR format
48 * @see CompoundTerm
127 * <li>Anything implementing the <i>CompoundTerm</i> interface whose arguments are
189 else if (o instanceof CompoundTerm) // compound term
190 writeStructure((CompoundTerm) o);
322 void writeStructure(CompoundTerm term) throws IOException
/barrelfish-master/usr/eclipseclp/Visualisation/src/com/parctechnologies/eclipse/visualisation/
H A DViewlet.java73 CompoundTerm collectPreBuildGoal();
75 void startBuild(CompoundTerm goalResults);
79 CompoundTerm collectPreUpdateGoal(UpdateEvent updateEvent);
81 void startUpdate(UpdateEvent updateEvent, CompoundTerm goalResults);
H A DElementType.java52 static ElementType parseFromCompoundTerm(CompoundTerm term)
59 CompoundTerm solverTerm = (CompoundTerm)(term.arg(1));
60 CompoundTerm typeTerm = (CompoundTerm)(term.arg(2));
H A DBatchGoal.java54 private static final CompoundTerm libGoal =
69 CompoundTerm executeGoal =
72 CompoundTerm fullGoal =
H A DInterestSpec.java36 public class InterestSpec implements CompoundTerm
39 private CompoundTerm changeCondition;
44 static final CompoundTerm DEFAULT_CHANGE_CONDITION =
58 public InterestSpec(String name, CompoundTerm changeCondition,
83 public CompoundTerm getChangeCondition()
88 public void setChangeCondition(CompoundTerm changeCondition)
H A DCreateEvent.java32 static VisEvent parseFromCompoundTerm(CompoundTerm term)
40 parseFromCompoundTerm((CompoundTerm)term.arg(2))));
H A DContractEvent.java29 static VisEvent parseFromCompoundTerm(CompoundTerm term)
H A DDestroyEvent.java29 static VisEvent parseFromCompoundTerm(CompoundTerm term)
H A DViewletImpl.java77 public CompoundTerm collectPreBuildGoal()
82 public void startBuild(CompoundTerm goalResults){}
88 public CompoundTerm collectPreUpdateGoal(UpdateEvent updateEvent)
93 public void startUpdate(UpdateEvent updateEvent, CompoundTerm goalResults)
H A DUpdateEvent.java34 static VisEvent parseFromCompoundTerm(CompoundTerm term)
60 CompoundTerm element = (CompoundTerm)it.next();
H A DViewableType.java44 * Given a CompoundTerm, try to create a ViewableType object from it, and
47 static ViewableType parseFromCompoundTerm(CompoundTerm term)
63 CompoundTerm elementType = (CompoundTerm) term.arg(2);
84 CompoundTerm elementType = (CompoundTerm) elemIt.next();
H A DBackUpdateEvent.java31 static VisEvent parseFromCompoundTerm(CompoundTerm term)
H A DExpandEvent.java30 static VisEvent parseFromCompoundTerm(CompoundTerm term)
H A DForwardUpdateEvent.java31 static VisEvent parseFromCompoundTerm(CompoundTerm term)
H A DVisEvent.java32 static VisEvent eventFromCompoundTerm(CompoundTerm term)
/barrelfish-master/usr/eclipseclp/JavaInterface/tests/
H A DDataExample1.java48 CompoundTerm a_term = construct_term();
64 private static CompoundTerm construct_term()
69 CompoundTerm theTerm = new CompoundTermImpl("foo", a, b, numberThree);
/barrelfish-master/usr/eclipseclp/Visualisation/src/com/parctechnologies/eclipse/visualisation/viewers/
H A DAbstractViewletType.java90 protected CompoundTerm composeElementGoal(Object elementReference,
91 CompoundTerm viewableName,
92 CompoundTerm viewletGoal)
108 protected CompoundTerm decomposeElementGoal(CompoundTerm viewletGoal)

Completed in 271 milliseconds

12