sort config panels

This commit is contained in:
Sebastian Sdorra
2010-11-06 16:56:42 +01:00
parent f415e68266
commit d0981ab419
4 changed files with 100 additions and 1 deletions

View File

@@ -29,6 +29,8 @@
*
*/
package sonia.scm.web.plugin;
//~--- JDK imports ------------------------------------------------------------
@@ -67,6 +69,18 @@ public class ClasspathWebResource implements WebResource
return ClasspathWebResource.class.getResourceAsStream(contentPath);
}
/**
* Method description
*
*
* @return
*/
@Override
public String getId()
{
return contentPath;
}
//~--- fields ---------------------------------------------------------------
/** Field description */

View File

@@ -29,6 +29,8 @@
*
*/
package sonia.scm.web.plugin;
//~--- JDK imports ------------------------------------------------------------
@@ -52,4 +54,12 @@ public interface WebResource
* @throws IOException
*/
public InputStream getContent() throws IOException;
/**
* Method description
*
*
* @return
*/
public String getId();
}