You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xmlbeans.apache.org by pc...@apache.org on 2004/10/13 06:42:07 UTC

cvs commit: xml-xmlbeans/v2/jam/test/tests/src_150/org/apache/xmlbeans/test/jam JamTestBase_150.java ReflectJamTest_150.java SourcesJamTest_150.java

pcal        2004/10/12 21:42:07

  Added:       v2/jam/test/tests/src_150/org/apache/xmlbeans/test/jam
                        JamTestBase_150.java ReflectJamTest_150.java
                        SourcesJamTest_150.java
  Log:
  jam: partial test refactoring, no product changes
  
  Revision  Changes    Path
  1.1                  xml-xmlbeans/v2/jam/test/tests/src_150/org/apache/xmlbeans/test/jam/JamTestBase_150.java
  
  Index: JamTestBase_150.java
  ===================================================================
  /*
  * The Apache Software License, Version 1.1
  *
  *
  * Copyright (c) 2003 The Apache Software Foundation.  All rights
  * reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:
  *
  * 1. Redistributions of source code must retain the above copyright
  *    notice, this list of conditions and the following disclaimer.
  *
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in
  *    the documentation and/or other materials provided with the
  *    distribution.
  *
  * 3. The end-user documentation included with the redistribution,
  *    if any, must include the following acknowledgment:
  *       "This product includes software developed by the
  *        Apache Software Foundation (http://www.apache.org/)."
  *    Alternately, this acknowledgment may appear in the software itself,
  *    if and wherever such third-party acknowledgments normally appear.
  *
  * 4. The names "Apache" and "Apache Software Foundation" must
  *    not be used to endorse or promote products derived from this
  *    software without prior written permission. For written
  *    permission, please contact apache@apache.org.
  *
  * 5. Products derived from this software may not be called "Apache
  *    XMLBeans", nor may "Apache" appear in their name, without prior
  *    written permission of the Apache Software Foundation.
  *
  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  * ====================================================================
  *
  * This software consists of voluntary contributions made by many
  * individuals on behalf of the Apache Software Foundation and was
  * originally based on software copyright (c) 2003 BEA Systems
  * Inc., <http://www.bea.com/>. For more information on the Apache Software
  * Foundation, please see <http://www.apache.org/>.
  */
  package org.apache.xmlbeans.test.jam;
  
  import org.apache.xmlbeans.impl.jam.*;
  
  import javax.xml.stream.XMLStreamException;
  import java.io.IOException;
  import java.util.*;
  
  import org.apache.xmlbeans.test.jam.cases.jsr175.RFEAnnotation;
  import org.apache.xmlbeans.test.jam.cases.jsr175.EmployeeAnnotation;
  import org.apache.xmlbeans.test.jam.cases.jsr175.EmployeeGroupAnnotation;
  
  /**
   * <p>Abstract base class for basic jam test cases.  These test cases work
   * against an abstract JamService - they don't care how the java types
   * were loaded.  Extending classes are responsible for implementing the
   * getService() method which should create the service from sources, or
   * classes, or whatever is appropriate.</p>
   *
   * @author Patrick Calahan &lt;email: pcal-at-bea-dot-com&gt;
   */
  public abstract class JamTestBase_150 extends JamTestBase {
  
    // ========================================================================
    // Cosntants
  
    private static final String[] ADDITIONAL_15_CLASSES = {
  
      DUMMY+".jsr175.AnnotatedClass",
      DUMMY+".jsr175.NestedAnnotatedClass",
      DUMMY+".jsr175.AddressAnnotation",
      DUMMY+".jsr175.EmployeeAnnotation",
      DUMMY+".jsr175.EmployeeGroupAnnotation",
      DUMMY+".jsr175.Constants",
  
      DUMMY+".jsr175.RFEAnnotation",
  
      DUMMY+".MyEnum",
      DUMMY+".MyGenericThing",
      DUMMY+".MyGenericThingSubclass",
    };
  
  
    // ========================================================================
    // Constructors
  
    public JamTestBase_150() {
      super("JamTestBase");
      System.out.println("constructed JamTestBase");
    }
  
    public JamTestBase_150(String casename) {
      super(casename);
      System.out.println("constructed JamTestBase "+casename);
    }
  
    // ========================================================================
    // Test methods
  
  /*
    public void testAnnogen() {
      AnnotationServiceFactory asf = AnnotationServiceFactory.getInstance();
      AnnotationServiceParams asp = asf.createServiceParams();
      asp.appendPopulator(new TestProxyPopulator());
      AnnotationService as = asf.createService(asp);
      JClass c = mLoader.loadClass(DUMMY+".jsr175.AnnotatedClass");
      assertTrue(c.getQualifiedName()+" is unresolved",!c.isUnresolvedType());
      RFEAnnotationImpl ra = (RFEAnnotationImpl)
        as.getAnnotation(RFEAnnotationImpl.class,c);
      assertTrue("ra.id() == "+ra.id(),ra.id() == 4561413 + 1);
    }
  */
  
    public void testIsEnum() {
      JClass gts = mLoader.loadClass(DUMMY+".MyEnum");
      assertTrue(gts.getQualifiedName()+".isEnumType() must be true",
                 gts.isEnumType() == true);
    }
  
    public void testGenerics() {
      JClass gts = mLoader.loadClass(DUMMY+".MyGenericThingSubclass");
      resolved(gts);
  //    System.out.println("=========== "+gts.getSuperclass().getQualifiedName());
    }
  
  
    public void test175Annotations() throws IOException, XMLStreamException {
      JClass clazz = resolved(mLoader.loadClass(DUMMY+".jsr175.AnnotatedClass"));
      JAnnotation ann = clazz.getAnnotation(RFEAnnotation.class);
      assertTrue("no "+RFEAnnotation.class+ " on "+clazz.getQualifiedName(),
                 ann != null);
      if (!is175AnnotationInstanceAvailable()) return; //FIXME test untyped access
      RFEAnnotation rfe = (RFEAnnotation)ann.getAnnotationInstance();
      assertTrue("id = "+rfe.id(), rfe.id() == 4561414);
      assertTrue("synopsis = '"+rfe.synopsis()+"'",
                 rfe.synopsis().equals("Balance the federal budget"));
    }
  
    public void testNested175AnnotationsUntyped() throws IOException, XMLStreamException {
      JClass clazz = resolved(mLoader.loadClass(DUMMY+".jsr175.NestedAnnotatedClass"));
      JAnnotation employeeGroup = clazz.getAnnotation(EmployeeGroupAnnotation.class);
      assertTrue("employeeGroup is null", employeeGroup != null);
      JAnnotationValue employeeListValue = employeeGroup.getValue("employees");
      JClass listType = employeeListValue.getType();
      assertTrue("listType is null", listType != null);
      assertTrue("listType is "+listType.getFieldDescriptor()+", expecting"+
                 EmployeeAnnotation[].class.getName(),
                 EmployeeAnnotation[].class.getName().equals(listType.getFieldDescriptor()));
      assertTrue("employees list is null", employeeListValue != null);
      JAnnotation[] employeeList = employeeListValue.asAnnotationArray();
      assertTrue("employees list is null", employeeList != null);
      assertTrue("employees list length is "+employeeList.length+", expecting 2",
                 employeeList.length == 2);
      JAnnotation boog = employeeList[0];
      assertTrue("boog annotation is null",boog != null);
      //FIXME shouldnt be isCommentsAvailable
      if (isCommentsAvailable()) assertTrue(boog.getSourcePosition() != null);
      {
        JAnnotationValue firstName = boog.getValue("firstName");
        assertTrue("firstName is null",firstName != null);
        assertTrue("firstName is "+firstName.asString(),
                   firstName.asString().equals("Boog"));
        JClass type = firstName.getType();
        assertTrue("firstName type is null",type != null);
        assertTrue("firstName type is "+type.getQualifiedName(),
                   "java.lang.String".equals(type.getQualifiedName()));
      }
      {
        JAnnotationValue aka = boog.getValue("aka");
        assertTrue("aka is null",aka != null);
        JClass type = aka.getType();
        assertTrue("aka type is null",type != null);
        assertTrue("aka type is "+type.getFieldDescriptor(),
                   String[].class.getName().equals(type.getFieldDescriptor()));
        String[] akas = aka.asStringArray();
        assertTrue("akas is null",akas != null);
        assertTrue("akas length is "+akas.length, akas.length == 3);
        assertTrue("akas type is not an array ", type.isArrayType());
  
        for(int i=0; i<akas.length; i++) {
          assertTrue("akas "+i+" is empty '"+akas[i]+"'",
                     (akas[i] != null && akas[i].trim().length() > 0));
        }
      }
      {
        JAnnotationValue active = boog.getValue("active");
        assertTrue("active is null",active != null);
        assertTrue("active = "+active.asString(),
                   active.asString().equals("TRUE"));
        JClass type = active.getType();
        assertTrue("active type is null",type != null);
  
        assertTrue("active type is "+type.getQualifiedName(),
                 type.getQualifiedName().equals
                   ("org.apache.xmlbeans.test.jam.cases.jsr175.Constants$Bool"));
  
        //FIXME javadoc seems to have a bug in it, not telling is it's an enum
        //assertTrue("active type is not an enum", ((ClassImpl)type).isEnumType());
      }
      {
        JAnnotationValue lastName = boog.getValue("lastName");
        assertTrue("lastName is null",lastName != null);
        assertTrue("lastName is "+lastName.asString(),
                   lastName.asString().equals("Powell"));
        JClass lastNameType = lastName.getType();
        assertTrue("street type is null",lastNameType != null);
        assertTrue("lastNameType "+lastNameType.getQualifiedName(),
                   "java.lang.String".equals(lastNameType.getQualifiedName()));
      }
      {
        JAnnotationValue specialDigits = boog.getValue("specialDigits");
        assertTrue("specialDigits is null",specialDigits != null);
        int[] expect = { 8, 6, 7, 5, 3, 0, 9 };
        assertTrue("specialDigits does not contain expected digits",
                   Arrays.equals(expect,specialDigits.asIntArray()));
        JClass specialDigitsType = specialDigits.getType();
        assertTrue("specialDigits type is null",specialDigitsType != null);
        assertTrue("specialDigits type is "+specialDigitsType.getFieldDescriptor()+
                   ", expecting "+int[].class.getName(),
                   specialDigitsType.getFieldDescriptor().equals(int[].class.getName()));
        assertTrue("specialDigits type is not an array ",
                   specialDigitsType.isArrayType());
      }
      {
        JAnnotationValue addressValue = boog.getValue("address");
        assertTrue("address is null",addressValue != null);
        JAnnotation address = addressValue.asAnnotation();
        assertTrue("address is null",address != null);
        //FIXME shouldnt be isCommentsAvailable
        if (isCommentsAvailable()) assertTrue(boog.getSourcePosition() != null);
  
        {
          JAnnotationValue street = address.getValue("street");
          assertTrue("street is null",street != null);
          assertTrue("street is "+street.asString(),
                     street.asString().equals("123 shady lane"));
          JClass streetType = street.getType();
          assertTrue("street type is null",streetType != null);
          assertTrue("streetType "+streetType.getQualifiedName(),
                     streetType.getQualifiedName().equals("java.lang.String"));
        }
        {
          JAnnotationValue city = address.getValue("city");
          assertTrue("city is null",city != null);
          assertTrue("city is "+city.asString(),
                     city.asString().equals("Cooperstown"));
          JClass cityType = city.getType();
          assertTrue("street type is null",cityType != null);
          assertTrue("cityType "+cityType.getQualifiedName(),
                     cityType.getQualifiedName().equals("java.lang.String"));
  
        }
        {
          JAnnotationValue zip = address.getValue("zip");
          assertTrue("zip is null",zip != null);
          assertTrue("zip is "+zip.asInt(),
                     zip.asInt() == 123456);
          JClass zipType = zip.getType();
          assertTrue("street type is null",zipType != null);
          assertTrue("zipType "+zipType.getQualifiedName(),
                     zipType.getQualifiedName().equals("int"));
          assertTrue("zipType not primitive", zipType.isPrimitiveType());
        }
      }
    }
  
    protected void addAllKnownClasses(Collection c) {
      c.addAll(Arrays.asList(ADDITIONAL_15_CLASSES));
      super.addAllKnownClasses(c);
    }
  
  
  }
  
  
  1.1                  xml-xmlbeans/v2/jam/test/tests/src_150/org/apache/xmlbeans/test/jam/ReflectJamTest_150.java
  
  Index: ReflectJamTest_150.java
  ===================================================================
  /*
  * The Apache Software License, Version 1.1
  *
  *
  * Copyright (c) 2003 The Apache Software Foundation.  All rights
  * reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:
  *
  * 1. Redistributions of source code must retain the above copyright
  *    notice, this list of conditions and the following disclaimer.
  *
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in
  *    the documentation and/or other materials provided with the
  *    distribution.
  *
  * 3. The end-user documentation included with the redistribution,
  *    if any, must include the following acknowledgment:
  *       "This product includes software developed by the
  *        Apache Software Foundation (http://www.apache.org/)."
  *    Alternately, this acknowledgment may appear in the software itself,
  *    if and wherever such third-party acknowledgments normally appear.
  *
  * 4. The names "Apache" and "Apache Software Foundation" must
  *    not be used to endorse or promote products derived from this
  *    software without prior written permission. For written
  *    permission, please contact apache@apache.org.
  *
  * 5. Products derived from this software may not be called "Apache
  *    XMLBeans", nor may "Apache" appear in their name, without prior
  *    written permission of the Apache Software Foundation.
  *
  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  * ====================================================================
  *
  * This software consists of voluntary contributions made by many
  * individuals on behalf of the Apache Software Foundation and was
  * originally based on software copyright (c) 2003 BEA Systems
  * Inc., <http://www.bea.com/>. For more information on the Apache Software
  * Foundation, please see <http://www.apache.org/>.
  */
  package org.apache.xmlbeans.test.jam;
  
  import org.apache.xmlbeans.impl.jam.JamServiceFactory;
  import org.apache.xmlbeans.impl.jam.JamServiceParams;
  import org.apache.xmlbeans.impl.jam.JamService;
  import org.apache.xmlbeans.impl.jam.JamClassLoader;
  import org.apache.xmlbeans.impl.jam.JClass;
  import org.apache.xmlbeans.impl.jam.internal.reflect.ReflectClassBuilder;
  import org.apache.xmlbeans.impl.jam.internal.java15.Reflect15DelegateImpl;
  
  import java.io.IOException;
  import java.io.File;
  import java.net.URLClassLoader;
  import java.net.URL;
  import java.net.MalformedURLException;
  
  /**
   * Runs the JamTestBase cases by loading the types from source.
   *
   * @author Patrick Calahan &lt;email: pcal-at-bea-dot-com&gt;
   */
  public class ReflectJamTest_150 extends JamTestBase {
  
    // ========================================================================
    // Constructors
  
    public ReflectJamTest_150(String name) {
      super(name);
    }
  
    // ========================================================================
    // JamTestBase implementation
  
  
    protected JamService getResultToTest() throws IOException {
      JamServiceFactory jsf = JamServiceFactory.getInstance();
      JamServiceParams params = jsf.createServiceParams();
  //params.setVerbose(ReflectClassBuilder.class);
  //params.setVerbose(Reflect15DelegateImpl.class);
      params.includeClassPattern(getCasesClassPath(),"**/*.class");
      return jsf.createService(params);
    }
  
    protected boolean isAnnotationsAvailable() { return false; }
  
    protected boolean isImportsAvailable() { return false; }
  
  
    //kind of a quick hack for now, should remove this and make sure that
    //even the classes case make the annotations available using a special
    //JStore
    protected boolean is175AnnotationInstanceAvailable() {
      return true;
    }
  
    protected boolean isParameterNamesKnown() { return false; }
  
    protected boolean isCommentsAvailable() {
      return false;
    }
  
    protected File getMasterDir() { return new File("masters/reflect"); }
  
    // ========================================================================
    // Reflection-specific test methods
  
    public void testClassLoaderWrapper() throws MalformedURLException {
      File aJarNotInTheClasspath = new File("dummy.jar");
      assertTrue(aJarNotInTheClasspath.getAbsolutePath()+" does not exist",
                 aJarNotInTheClasspath.exists());
      URL url = aJarNotInTheClasspath.toURL();
      ClassLoader cl = new URLClassLoader(new URL[] {url},
                                          ClassLoader.getSystemClassLoader());
      JamClassLoader jcl = JamServiceFactory.getInstance().createJamClassLoader(cl);
      String aClassName = "foo.SomeClassInAnExternalJar";
      JClass aClass = jcl.loadClass(aClassName);
      assertTrue(aClass.getQualifiedName(),!aClass.isUnresolvedType());
      //sanity check it now
      JamClassLoader sjcl = JamServiceFactory.getInstance().createSystemJamClassLoader();
      JClass aFailedClass = sjcl.loadClass(aClassName);
      assertTrue(aFailedClass.getQualifiedName()+" expected to be unresolved",
                 aFailedClass.isUnresolvedType());
  
    }
  }
  
  
  
  1.1                  xml-xmlbeans/v2/jam/test/tests/src_150/org/apache/xmlbeans/test/jam/SourcesJamTest_150.java
  
  Index: SourcesJamTest_150.java
  ===================================================================
  /*
  * The Apache Software License, Version 1.1
  *
  *
  * Copyright (c) 2003 The Apache Software Foundation.  All rights
  * reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:
  *
  * 1. Redistributions of source code must retain the above copyright
  *    notice, this list of conditions and the following disclaimer.
  *
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in
  *    the documentation and/or other materials provided with the
  *    distribution.
  *
  * 3. The end-user documentation included with the redistribution,
  *    if any, must include the following acknowledgment:
  *       "This product includes software developed by the
  *        Apache Software Foundation (http://www.apache.org/)."
  *    Alternately, this acknowledgment may appear in the software itself,
  *    if and wherever such third-party acknowledgments normally appear.
  *
  * 4. The names "Apache" and "Apache Software Foundation" must
  *    not be used to endorse or promote products derived from this
  *    software without prior written permission. For written
  *    permission, please contact apache@apache.org.
  *
  * 5. Products derived from this software may not be called "Apache
  *    XMLBeans", nor may "Apache" appear in their name, without prior
  *    written permission of the Apache Software Foundation.
  *
  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  * ====================================================================
  *
  * This software consists of voluntary contributions made by many
  * individuals on behalf of the Apache Software Foundation and was
  * originally based on software copyright (c) 2003 BEA Systems
  * Inc., <http://www.bea.com/>. For more information on the Apache Software
  * Foundation, please see <http://www.apache.org/>.
  */
  package org.apache.xmlbeans.test.jam;
  
  import org.apache.xmlbeans.impl.jam.JamServiceFactory;
  import org.apache.xmlbeans.impl.jam.JamServiceParams;
  import org.apache.xmlbeans.impl.jam.JamService;
  import org.apache.xmlbeans.impl.jam.internal.javadoc.JavadocClassBuilder;
  
  import java.io.IOException;
  import java.io.File;
  
  /**
   * Runs the JamTestBase cases by loading the types from source.
   *
   * @author Patrick Calahan &lt;email: pcal-at-bea-dot-com&gt;
   */
  public class SourcesJamTest_150 extends JamTestBase_150 {
  
    // ========================================================================
    // Constructors
  
    public SourcesJamTest_150(String name) {
      super(name);
    }
  
    // ========================================================================
    // JamTestBase implementation
  
    protected JamService getResultToTest() throws IOException {
      JamServiceFactory jsf = JamServiceFactory.getInstance();
      JamServiceParams params = jsf.createServiceParams();
  //    params.setVerbose(JavadocRunner.class);
  //    params.setVerbose(JavadocClassBuilder.class);
  //    params.setVerbose(Javadoc15DelegateImpl.class);
  //    params.setVerbose(DirectoryScanner.class);
  //    params.includeSourceFile(new File("x:\\xml-xmlbeans\\v2\\jam\\test\\cases\\org\\apache\\xmlbeans\\test\\jam\\cases\\MyException.java"));
      params.includeSourcePattern(getCasesSourcepath(),"**/*.java");
  
      params.setProperty(JavadocClassBuilder.ARGS_PROPERTY,"-source 1.5");
      return jsf.createService(params);
    }
  
    protected boolean isAnnotationsAvailable() { return true; }
  
    protected boolean isImportsAvailable() { return true; }
  
    //kind of a quick hack for now, should remove this and make sure that
    //even the classes case make the annotations available using a special
    //JStore
    protected boolean is175AnnotationInstanceAvailable() {
      return false;
    }
  
    protected boolean isParamseterNamesKnown() {
      return true;
    }
  
    protected boolean isCommentsAvailable() {
      return true;
    }
  
    protected File getMasterDir() { return new File("masters/javadoc"); }
  }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xmlbeans.apache.org
For additional commands, e-mail: commits-help@xmlbeans.apache.org