donaldp 2002/06/09 02:47:33
Modified: container/src/java/org/apache/myrmidon/interfaces/role
RoleInfo.java
Log:
Move statics to top of class
Revision Changes Path
1.7 +6 -6
jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/interfaces/role/RoleInfo.java
Index: RoleInfo.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/interfaces/role/RoleInfo.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- RoleInfo.java 25 Apr 2002 09:34:45 -0000 1.6
+++ RoleInfo.java 9 Jun 2002 09:47:33 -0000 1.7
@@ -15,20 +15,20 @@
* A role definition. Role definitions are immutable.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Adam Murdoch</a>
- * @version $Revision: 1.6 $ $Date: 2002/04/25 09:34:45 $
+ * @version $Revision: 1.7 $ $Date: 2002/06/09 09:47:33 $
*/
public final class RoleInfo
{
- private final String m_name;
- private final Class m_type;
- private final Map m_attributes;
- private final Map m_readOnlyAttributes;
-
/** The type name of the default implementation for this role. */
public static final String ATTRIBUTE_DEFAULT_TYPE = "default-type";
/** The classname of the custom type deployer for this role. */
public static final String ATTRIBUTE_CUSTOM_TYPE_DEPLOYER =
"type-deployer";
+
+ private final String m_name;
+ private final Class m_type;
+ private final Map m_attributes;
+ private final Map m_readOnlyAttributes;
/**
* Creates a role definition.
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>