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       String getName();
8   
9       String getDescription();
10  }