[jboss-svn-commits] JBoss Common SVN: r3481 - in declarchive/trunk/impl-base/src/main/java/org/jboss/declarchive/impl/base: spec and 1 other directory.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Mon Aug 24 14:51:35 EDT 2009
Author: aslak
Date: 2009-08-24 14:51:35 -0400 (Mon, 24 Aug 2009)
New Revision: 3481
Modified:
declarchive/trunk/impl-base/src/main/java/org/jboss/declarchive/impl/base/ContainerBase.java
declarchive/trunk/impl-base/src/main/java/org/jboss/declarchive/impl/base/WebContainerBase.java
declarchive/trunk/impl-base/src/main/java/org/jboss/declarchive/impl/base/spec/EnterpriseArchiveImpl.java
declarchive/trunk/impl-base/src/main/java/org/jboss/declarchive/impl/base/spec/JavaArchiveImpl.java
declarchive/trunk/impl-base/src/main/java/org/jboss/declarchive/impl/base/spec/WebArchiveImpl.java
Log:
TMPARCH-6 Updated some javadoc comments after Supper/Base rename
Modified: declarchive/trunk/impl-base/src/main/java/org/jboss/declarchive/impl/base/ContainerBase.java
===================================================================
--- declarchive/trunk/impl-base/src/main/java/org/jboss/declarchive/impl/base/ContainerBase.java 2009-08-24 18:40:25 UTC (rev 3480)
+++ declarchive/trunk/impl-base/src/main/java/org/jboss/declarchive/impl/base/ContainerBase.java 2009-08-24 18:51:35 UTC (rev 3481)
@@ -36,7 +36,7 @@
import org.jboss.declarchive.impl.base.path.BasicPath;
/**
- * ContainerSupport
+ * ContainerBase
*
* @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
* @version $Revision: $
Modified: declarchive/trunk/impl-base/src/main/java/org/jboss/declarchive/impl/base/WebContainerBase.java
===================================================================
--- declarchive/trunk/impl-base/src/main/java/org/jboss/declarchive/impl/base/WebContainerBase.java 2009-08-24 18:40:25 UTC (rev 3480)
+++ declarchive/trunk/impl-base/src/main/java/org/jboss/declarchive/impl/base/WebContainerBase.java 2009-08-24 18:51:35 UTC (rev 3481)
@@ -26,7 +26,7 @@
import org.jboss.declarchive.impl.base.path.BasicPath;
/**
- * WebContainerSupport
+ * WebContainerBase
*
* Abstract class that helps implement the WebContainer.
* Used by specs that extends the WebContainer.
Modified: declarchive/trunk/impl-base/src/main/java/org/jboss/declarchive/impl/base/spec/EnterpriseArchiveImpl.java
===================================================================
--- declarchive/trunk/impl-base/src/main/java/org/jboss/declarchive/impl/base/spec/EnterpriseArchiveImpl.java 2009-08-24 18:40:25 UTC (rev 3480)
+++ declarchive/trunk/impl-base/src/main/java/org/jboss/declarchive/impl/base/spec/EnterpriseArchiveImpl.java 2009-08-24 18:51:35 UTC (rev 3481)
@@ -82,36 +82,57 @@
//-------------------------------------------------------------------------------------||
// Required Implementations -----------------------------------------------------------||
//-------------------------------------------------------------------------------------||
+
+ /* (non-Javadoc)
+ * @see org.jboss.declarchive.impl.base.ContainerBase#getLibraryPath()
+ */
@Override
public Path getLibraryPath()
{
return PATH_LIBRARY;
}
+ /* (non-Javadoc)
+ * @see org.jboss.declarchive.impl.base.ContainerBase#getResourcePath()
+ */
@Override
protected Path getResourcePath()
{
return PATH_RESOURCE;
}
+ /* (non-Javadoc)
+ * @see org.jboss.declarchive.impl.base.ContainerBase#getManinfestPath()
+ */
@Override
protected Path getManinfestPath()
{
return PATH_MANIFEST;
}
+ /* (non-Javadoc)
+ * @see org.jboss.declarchive.impl.base.EnterpriseContainerBase#getApplicationPath()
+ */
@Override
protected Path getApplicationPath()
{
return PATH_APPLICATION;
}
+ /* (non-Javadoc)
+ * @see org.jboss.declarchive.impl.base.EnterpriseContainerBase#getModulePath()
+ */
@Override
protected Path getModulePath()
{
return PATH_MODULE;
}
+ /**
+ * Classes are not supported by EnterpriseArchive.
+ *
+ * @throws UnsupportedOperationException EnterpriseArchive does not support classes
+ */
@Override
protected Path getClassesPath()
{
Modified: declarchive/trunk/impl-base/src/main/java/org/jboss/declarchive/impl/base/spec/JavaArchiveImpl.java
===================================================================
--- declarchive/trunk/impl-base/src/main/java/org/jboss/declarchive/impl/base/spec/JavaArchiveImpl.java 2009-08-24 18:40:25 UTC (rev 3480)
+++ declarchive/trunk/impl-base/src/main/java/org/jboss/declarchive/impl/base/spec/JavaArchiveImpl.java 2009-08-24 18:51:35 UTC (rev 3481)
@@ -82,7 +82,7 @@
//-------------------------------------------------------------------------------------||
/* (non-Javadoc)
- * @see org.jboss.declarchive.impl.base.ContainerSupport#getManinfestPath()
+ * @see org.jboss.declarchive.impl.base.ContainerBase#getManinfestPath()
*/
@Override
protected Path getManinfestPath()
@@ -91,7 +91,7 @@
}
/* (non-Javadoc)
- * @see org.jboss.declarchive.impl.base.ContainerSupport#getClassesPath()
+ * @see org.jboss.declarchive.impl.base.ContainerBase#getClassesPath()
*/
@Override
protected Path getClassesPath()
@@ -100,7 +100,7 @@
}
/* (non-Javadoc)
- * @see org.jboss.declarchive.impl.base.ContainerSupport#getResourcePath()
+ * @see org.jboss.declarchive.impl.base.ContainerBase#getResourcePath()
*/
@Override
protected Path getResourcePath()
Modified: declarchive/trunk/impl-base/src/main/java/org/jboss/declarchive/impl/base/spec/WebArchiveImpl.java
===================================================================
--- declarchive/trunk/impl-base/src/main/java/org/jboss/declarchive/impl/base/spec/WebArchiveImpl.java 2009-08-24 18:40:25 UTC (rev 3480)
+++ declarchive/trunk/impl-base/src/main/java/org/jboss/declarchive/impl/base/spec/WebArchiveImpl.java 2009-08-24 18:51:35 UTC (rev 3481)
@@ -74,7 +74,7 @@
//-------------------------------------------------------------------------------------||
/**
- * Create a new JavaArchive with any type storage engine as backing.
+ * Create a new WebArchive with any type storage engine as backing.
*
* @param delegate The storage backing.
*/
@@ -88,7 +88,7 @@
//-------------------------------------------------------------------------------------||
/* (non-Javadoc)
- * @see org.jboss.declarchive.impl.base.ContainerSupport#getManinfestPath()
+ * @see org.jboss.declarchive.impl.base.ContainerBase#getManinfestPath()
*/
@Override
protected Path getManinfestPath()
@@ -97,7 +97,7 @@
}
/* (non-Javadoc)
- * @see org.jboss.declarchive.impl.base.ContainerSupport#getClassesPath()
+ * @see org.jboss.declarchive.impl.base.ContainerBase#getClassesPath()
*/
@Override
protected Path getClassesPath()
@@ -106,7 +106,7 @@
}
/* (non-Javadoc)
- * @see org.jboss.declarchive.impl.base.ContainerSupport#getResourcePath()
+ * @see org.jboss.declarchive.impl.base.ContainerBase#getResourcePath()
*/
@Override
protected Path getResourcePath()
@@ -115,7 +115,7 @@
}
/* (non-Javadoc)
- * @see org.jboss.declarchive.impl.base.ContainerSupport#getLibraryPath()
+ * @see org.jboss.declarchive.impl.base.ContainerBase#getLibraryPath()
*/
@Override
public Path getLibraryPath()
@@ -124,7 +124,7 @@
}
/* (non-Javadoc)
- * @see org.jboss.declarchive.impl.base.WebContainerSupport#getWebPath()
+ * @see org.jboss.declarchive.impl.base.WebContainerBase#getWebPath()
*/
@Override
protected Path getWebPath()
More information about the jboss-svn-commits
mailing list