1 18 package org.apache.beehive.netui.compiler; 19 20 import java.util.List ; 21 import java.util.ArrayList ; 22 import java.io.File ; 23 24 public class FacesBackingInfo 25 extends SourceFileInfo 26 { 27 private List _commandHandlers = new ArrayList (); 28 29 public FacesBackingInfo( File sourceFile, String className ) 30 { 31 super( sourceFile, className ); 32 } 33 34 public List getCommandHandlers() 35 { 36 return _commandHandlers; 37 } 38 39 void addCommandHandler( String commandHandlerName ) 40 { 41 _commandHandlers.add( commandHandlerName ); 42 } 43 } 44 | Popular Tags |