1 15 package org.apache.tapestry.engine.state; 16 17 import org.apache.hivemind.impl.BaseLocatable; 18 19 26 public class StateObjectContribution extends BaseLocatable 27 { 28 private String _name; 29 30 private String _scope; 31 32 private StateObjectFactory _factory; 33 34 public StateObjectFactory getFactory() 35 { 36 return _factory; 37 } 38 39 public void setFactory(StateObjectFactory factory) 40 { 41 _factory = factory; 42 } 43 44 public String getName() 45 { 46 return _name; 47 } 48 49 public void setName(String name) 50 { 51 _name = name; 52 } 53 54 public String getScope() 55 { 56 return _scope; 57 } 58 59 public void setScope(String scope) 60 { 61 _scope = scope; 62 } 63 } | Popular Tags |