KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jacorb > trading > constraint > PropertySource


1
2 // Copyright (C) 1998-1999
3
// Object Oriented Concepts, Inc.
4

5 // **********************************************************************
6
//
7
// Copyright (c) 1997
8
// Mark Spruiell (mark@intellisoft.com)
9
//
10
// See the COPYING file for more information
11
//
12
// **********************************************************************
13

14 package org.jacorb.trading.constraint;
15
16
17 /**
18  * Defines an interface to allow a Property node in the syntax tree
19  * to obtain the value of a property
20  */

21 public interface PropertySource
22 {
23   public boolean exists(String JavaDoc property);
24
25   public Value getValue(String JavaDoc property);
26
27   public Value[] getSequenceValues(String JavaDoc property);
28 }
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Popular Tags