001 package railo.runtime.component; 002 003 import java.io.Serializable; 004 005 public interface Member extends Serializable { 006 007 /* 008 public static final int TYPE_FUNCTION=0; 009 public static final int TYPE_DATA=1; 010 public int getType() 011 012 013 */ 014 /** 015 * return the access modifier of this member 016 * @return the access 017 */ 018 public int getAccess(); 019 020 /** 021 * return the value itself 022 * @return value 023 */ 024 public Object getValue(); 025 }