org.netbeans.modules.bugtracking.BugtrackingRegistrationProcessor Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.netbeans.modules.bugtracking;
import java.util.Collections;
import java.util.Set;
import javax.annotation.processing.Processor;
import javax.annotation.processing.RoundEnvironment;
import javax.lang.model.element.Element;
import javax.lang.model.element.TypeElement;
import org.netbeans.modules.bugtracking.spi.BugtrackingConnector;
import org.netbeans.modules.bugtracking.spi.BugtrackingConnector.Registration;
import org.openide.filesystems.annotations.LayerBuilder.File;
import org.openide.filesystems.annotations.LayerGeneratingProcessor;
import org.openide.filesystems.annotations.LayerGenerationException;
import org.openide.util.lookup.ServiceProvider;
/**
*
* @author Tomas Stupka
*/
@ServiceProvider(service=Processor.class)
public class BugtrackingRegistrationProcessor extends LayerGeneratingProcessor {
@Override
public Set getSupportedAnnotationTypes() {
return Collections.singleton(BugtrackingConnector.Registration.class.getCanonicalName());
}
@Override
protected boolean handleProcess(Set extends TypeElement> annotations, RoundEnvironment roundEnv) throws LayerGenerationException {
for (Element e : roundEnv.getElementsAnnotatedWith(BugtrackingConnector.Registration.class)) {
Registration r = e.getAnnotation(BugtrackingConnector.Registration.class);
if (r == null) {
continue;
}
File f = layer(e).instanceFile("Services/Bugtracking", null, r, null); // NOI18N
f.methodvalue("instanceCreate", DelegatingConnector.class.getName(), "create"); // NOI18N
f.stringvalue("instanceOf", BugtrackingConnector.class.getName()); // NOI18N
f.instanceAttribute("delegate", BugtrackingConnector.class); // NOI18N
f.bundlevalue("displayName", r.displayName()); // NOI18N
f.bundlevalue("tooltip", r.tooltip()); // NOI18N
f.stringvalue("id", r.id()); // NOI18N
f.boolvalue("providesRepositoryManagement", r.providesRepositoryManagement()); // NOI18N
if (!r.iconPath().isEmpty()) {
f.bundlevalue("iconPath", r.iconPath()); // NOI18N
}
f.write();
}
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy