View Javadoc

1   package com.atlassian.plugin.schema.spi;
2   
3   /**
4    * Describes a module that will be documented in the XML schema
5    */
6   public interface SchemaDocumented
7   {
8       String getName();
9   
10      String getDescription();
11  }