blob: f62762d58db6cb137e40bbd181cedb3c9f838518 [file] [log] [blame]
/* Copyright 2004 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.xmlbeans.test.jam;
import org.apache.xmlbeans.impl.jam.JamService;
import org.apache.xmlbeans.impl.jam.JamServiceFactory;
import org.apache.xmlbeans.impl.jam.JamServiceParams;
import org.apache.xmlbeans.impl.jam.provider.JamServiceFactoryImpl;
import java.io.IOException;
import java.io.File;
/**
*
* @author Patrick Calahan <email: pcal-at-bea-dot-com>
*/
public class ParserJamTest extends JamTestBase {
// ========================================================================
// Constructors
public ParserJamTest(String name) {
super(name);
}
// ========================================================================
// JamTestBase implementation
protected JamService getResultToTest() throws IOException {
JamServiceFactory jsf = JamServiceFactory.getInstance();
JamServiceParams params = jsf.createServiceParams();
params.setProperty(JamServiceFactoryImpl.USE_NEW_PARSER,"true");
params.includeSourcePattern(getDummyclassesSourcepath(),"**/*.java");
return jsf.createService(params);
}
protected boolean isAnnotationsAvailable() { return false;//FIXME!!
}
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 false;
}
protected boolean isParameterNamesKnown() {
return true;
}
protected boolean isCommentsAvailable() {
return true;
}
protected File getMasterDir() {
return new File("masters/parser");
}
}