KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > genimen > djeneric > repository > oql > core > nodes > ValueExpression


1 package com.genimen.djeneric.repository.oql.core.nodes;
2
3 import com.genimen.djeneric.repository.oql.core.MatchException;
4
5 public interface ValueExpression
6 {
7   public Object JavaDoc getValue(MatchingContext context) throws MatchException;
8 }
Popular Tags