Author: gbailleul
Date: Fri Sep 14 13:18:35 2012
New Revision: 1384756

URL: http://svn.apache.org/viewvc?rev=1384756&view=rev
Log:
PDFBOX-1343: removed extension specific annotations

Removed:
    
pdfbox/branches/xmpbox-refactoring/xmpbox/src/main/java/org/apache/padaf/xmpbox/schema/PropertyExtensionDefinition.java
    
pdfbox/branches/xmpbox-refactoring/xmpbox/src/main/java/org/apache/padaf/xmpbox/schema/SchemaExtensionDefinition.java
Modified:
    
pdfbox/branches/xmpbox-refactoring/xmpbox/src/test/java/org/apache/padaf/xmpbox/BirthCertificateSchemaWithXMLDescriptions.java

Modified: 
pdfbox/branches/xmpbox-refactoring/xmpbox/src/test/java/org/apache/padaf/xmpbox/BirthCertificateSchemaWithXMLDescriptions.java
URL: 
http://svn.apache.org/viewvc/pdfbox/branches/xmpbox-refactoring/xmpbox/src/test/java/org/apache/padaf/xmpbox/BirthCertificateSchemaWithXMLDescriptions.java?rev=1384756&r1=1384755&r2=1384756&view=diff
==============================================================================
--- 
pdfbox/branches/xmpbox-refactoring/xmpbox/src/test/java/org/apache/padaf/xmpbox/BirthCertificateSchemaWithXMLDescriptions.java
 (original)
+++ 
pdfbox/branches/xmpbox-refactoring/xmpbox/src/test/java/org/apache/padaf/xmpbox/BirthCertificateSchemaWithXMLDescriptions.java
 Fri Sep 14 13:18:35 2012
@@ -25,36 +25,28 @@ import java.util.Calendar;
 
 import javax.xml.XMLConstants;
 
-import org.apache.padaf.xmpbox.schema.PropertyExtensionDefinition;
-import org.apache.padaf.xmpbox.schema.SchemaExtensionDefinition;
 import org.apache.padaf.xmpbox.schema.XMPSchema;
 import org.apache.padaf.xmpbox.type.Attribute;
 import org.apache.padaf.xmpbox.type.PropertyType;
 import org.apache.padaf.xmpbox.type.StructuredType;
 
 
-@SchemaExtensionDefinition(schema = "Birth-Certificate Schema", 
valueType_description = "/org/apache/padaf/xmpbox/valueTypeDescription.xml", 
property_descriptions = "propertiesDescription.xml")
 
@StructuredType(preferedPrefix="adn",namespace="http://test.apache.com/xap/adn/";)
 public class BirthCertificateSchemaWithXMLDescriptions extends XMPSchema {
 
        @PropertyType(propertyType = "Text")
-       @PropertyExtensionDefinition(propertyCategory = "external")
        public static final String FIRST_NAME = "firstname";
 
        @PropertyType(propertyType = "seq Text")
-       @PropertyExtensionDefinition(propertyCategory = "external")
        public static final String LAST_NAME = "lastname";
 
        @PropertyType(propertyType = "Text")
-       @PropertyExtensionDefinition(propertyCategory = "external")
        public static final String BIRTH_PLACE = "birth-place";
 
        @PropertyType(propertyType = "Date")
-       @PropertyExtensionDefinition(propertyCategory = "external")
        public static final String BIRTH_DATE = "birth-date";
 
        @PropertyType(propertyType = "Text")
-       @PropertyExtensionDefinition(propertyCategory = "external")
        public static final String BIRTH_COUNTRY = "birth-country";
 
 //     @PropertyType(propertyType = "mailaddress")


Reply via email to