本文整理汇总了Java中org.openide.filesystems.annotations.LayerBuilder.File.bundlevalue方法的典型用法代码示例。如果您正苦于以下问题:Java File.bundlevalue方法的具体用法?Java File.bundlevalue怎么用?Java File.bundlevalue使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.openide.filesystems.annotations.LayerBuilder.File
的用法示例。
在下文中一共展示了File.bundlevalue方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: handleProcess
import org.openide.filesystems.annotations.LayerBuilder.File; //导入方法依赖的package包/类
@Override
protected boolean handleProcess(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) throws LayerGenerationException {
if (roundEnv.processingOver()) {
return false;
}
for (Element e : roundEnv.getElementsAnnotatedWith(ServicesTabNodeRegistration.class)) {
ServicesTabNodeRegistration reg = e.getAnnotation(ServicesTabNodeRegistration.class);
File f = layer(e).
instanceFile("UI/Runtime", null, Node.class).
stringvalue("iconResource", reg.iconResource()).
stringvalue("name", reg.name()).
methodvalue("instanceCreate", "org.openide.nodes.NodeOp", "factory").
bundlevalue("displayName", reg.displayName()).
instanceAttribute("original", Node.class);
if (!"".equals(reg.shortDescription())) {
f.bundlevalue("shortDescription", reg.shortDescription());
}
f.position(reg.position());
f.write();
}
return true;
}
示例2: handleProcess
import org.openide.filesystems.annotations.LayerBuilder.File; //导入方法依赖的package包/类
@Override
protected boolean handleProcess(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) throws LayerGenerationException {
for (Element e : roundEnv.getElementsAnnotatedWith(VersioningSystem.Registration.class)) {
Registration a = e.getAnnotation(VersioningSystem.Registration.class);
if (a == null) {
continue;
}
File f = layer(e).instanceFile("Services/VersioningSystem", null, a, null); // NOI18N
f.methodvalue("instanceCreate", DelegatingVCS.class.getName(), "create"); // NOI18N
f.stringvalue("instanceOf", org.netbeans.modules.versioning.core.spi.VersioningSystem.class.getName()); // NOI18N
String[] folderNames = a.metadataFolderNames();
for (int i = 0; i < folderNames.length; i++) {
f.stringvalue("metadataFolderName" + i, folderNames[i]); // NOI18N
}
f.instanceAttribute("delegate", VersioningSystem.class); // NOI18N
f.bundlevalue("displayName", a.displayName()); // NOI18N
f.bundlevalue("menuLabel", a.menuLabel()); // NOI18N
f.stringvalue("actionsCategory", a.actionsCategory()); // NOI18N
f.write();
}
return true;
}
示例3: handleProcess
import org.openide.filesystems.annotations.LayerBuilder.File; //导入方法依赖的package包/类
@Override
protected boolean handleProcess(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) throws LayerGenerationException {
for (Element e : roundEnv.getElementsAnnotatedWith(VersioningSystem.Registration.class)) {
Registration r = e.getAnnotation(VersioningSystem.Registration.class);
if(r == null) {
continue;
}
String s = processingEnv.getElementUtils().getBinaryName((TypeElement)e).toString();
File f = layer(e).instanceFile("Services/VersioningSystem", null, r, null); // NOI18N
f.methodvalue("instanceCreate", DelegatingVCS.class.getName(), "create"); // NOI18N
f.stringvalue("instanceOf", VersioningSystem.class.getName());
String[] folderNames = r.metadataFolderNames();
for (int i = 0; i < folderNames.length; i++) {
f.stringvalue("metadataFolderName" + i, folderNames[i]); // NOI18N
}
f.instanceAttribute("delegate", VersioningSystem.class); // NOI18N
f.bundlevalue("displayName", r.displayName()); // NOI18N
f.bundlevalue("menuLabel", r.menuLabel()); // NOI18N
f.stringvalue("actionsCategory", r.actionsCategory()); // NOI18N
f.boolvalue("isLocalHistory", s.equals("org.netbeans.modules.localhistory.LocalHistoryVCS")); // NOI18N
f.write();
}
return true;
}
示例4: registerExt
import org.openide.filesystems.annotations.LayerBuilder.File; //导入方法依赖的package包/类
private void registerExt(Element e, ExtensionRegistration r) throws LayerGenerationException {
final LayerBuilder b = layer(e);
File f = b.file("Services/MIMEResolver/" + getName(e).replace('.', '-') + "-Extension" + SUFFIX); // NOI18N
f.methodvalue("instanceCreate", MIMEResolver.class.getName(), "create"); // NOI18N
f.stringvalue("instanceClass", MIMEResolver.class.getName()); // NOI18N
f.stringvalue("mimeType", r.mimeType()); // NOI18N
int cnt = 0;
for (String ext : r.extension()) {
f.stringvalue("ext." + (cnt++), ext); // NOI18N
}
f.position(r.position());
int ccnt = 0;
for (String chooser : r.showInFileChooser()) {
f.bundlevalue("fileChooser." + (ccnt++), chooser);
}
f.bundlevalue("displayName", r.displayName()); // NOI18N
f.write();
}
示例5: registerDefinition
import org.openide.filesystems.annotations.LayerBuilder.File; //导入方法依赖的package包/类
private void registerDefinition(Element e, String relRes, Registration r) throws LayerGenerationException {
String absRes = LayerBuilder.absolutizeResource(e, relRes);
final LayerBuilder b = layer(e);
FileObject fo = b.validateResource(absRes, e, r, null, false);
File f = b.file("Services/MIMEResolver/" + getName(e).replace('.', '-') + "-Registration" + SUFFIX); // NOI18N
f.methodvalue("instanceCreate", MIMEResolver.class.getName(), "create"); // NOI18N
f.stringvalue("instanceClass", MIMEResolver.class.getName()); // NOI18N
f.serialvalue("bytes", generateInstanceResolver(fo, e, f, r)); // NOI18N
f.position(r.position());
int ccnt = 0;
for (String chooser : r.showInFileChooser()) {
f.bundlevalue("fileChooser." + (ccnt++), chooser);
}
f.bundlevalue("displayName", r.displayName()); // NOI18N
f.write();
}
示例6: handleElement
import org.openide.filesystems.annotations.LayerBuilder.File; //导入方法依赖的package包/类
private void handleElement(Element e, Keywords annotation, String name) throws LayerGenerationException {
originatingElement = e;
if (!annotation.location().equals(OptionsDisplayer.GENERAL) && !annotation.location().equals(OptionsDisplayer.KEYMAPS)) {
if (annotation.tabTitle().trim().isEmpty()) {
throw new LayerGenerationException("Must specify tabTitle", e, processingEnv, annotation, "tabTitle");
}
}
File file = layer(e).
file("OptionsDialog/Keywords/".concat(e.asType().toString()).concat(name)).
stringvalue("location", annotation.location()).
bundlevalue("tabTitle", annotation.tabTitle(), annotation, "tabTitle");
String[] keywords = annotation.keywords();
for (int j = 0; j < keywords.length; j++) {
file = file.bundlevalue("keywords-".concat(Integer.toString(j+1)), keywords[j], annotation, "keywords");
}
file.write();
}
示例7: handleProcess
import org.openide.filesystems.annotations.LayerBuilder.File; //导入方法依赖的package包/类
@Override
protected boolean handleProcess(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) throws LayerGenerationException {
for (Element e : roundEnv.getElementsAnnotatedWith(Registration.class)) {
Registration registration = e.getAnnotation(Registration.class);
if(registration == null) {
continue;
}
File f = layer(e).instanceFile("Services", null);
f.stringvalue("instanceOf", TestCreatorProvider.class.getName());
f.bundlevalue("displayName", registration.displayName());
f.bundlevalue("identifier", registration.identifier());
f.write();
}
return true;
}
示例8: handleProcess
import org.openide.filesystems.annotations.LayerBuilder.File; //导入方法依赖的package包/类
@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;
}
示例9: handleProcess
import org.openide.filesystems.annotations.LayerBuilder.File; //导入方法依赖的package包/类
@Override
protected boolean handleProcess(Set<? extends TypeElement> set, RoundEnvironment env) throws LayerGenerationException {
Elements elements = processingEnv.getElementUtils();
for (Element element : env.getElementsAnnotatedWith(AboutBox.class)) {
TypeElement clazz = (TypeElement) element;
AboutBox aboutBox = clazz.getAnnotation(AboutBox.class);
String teName = elements.getBinaryName(clazz).toString();
File file = layer(element)
.file("AboutBox/" + teName.replace('.', '-') + ".instance")
.intvalue("position", aboutBox.position())
.bundlevalue("displayName", aboutBox.displayName());
if (!aboutBox.iconPath().isEmpty()) {
file.bundlevalue("iconPath", aboutBox.iconPath());
}
file.write();
}
return true;
}
示例10: processRegistration
import org.openide.filesystems.annotations.LayerBuilder.File; //导入方法依赖的package包/类
private void processRegistration(Element e, RibbonRegistration ref, ActionID aid) throws LayerGenerationException {
String name = aid.id().replace('.', '-');
File f = layer(e).file(ref.path() + "/" + name + ".shadow");
f.stringvalue("originalFile", "Actions/" + aid.category() + "/" + name + ".instance");
f.position(ref.position());
String str = ref.menuText();
if(str!=null && str.length()>0)
f.bundlevalue("menuText", str);
str = ref.description();
if(str!=null && str.length()>0)
f.bundlevalue("description", str);
str = ref.iconBase();
if(str!=null && str.length()>0)
f.stringvalue("iconBase", str);
str = ref.tooltipBody();
if(str!=null && str.length()>0)
f.bundlevalue("tooltipBody", str);
str = ref.tooltipTitle();
if(str!=null && str.length()>0)
f.bundlevalue("tooltipTitle", str);
str = ref.tooltipIcon();
if(str!=null && str.length()>0)
f.stringvalue("tooltipIcon", str);
str = ref.tooltipFooter();
if(str!=null && str.length()>0)
f.bundlevalue("tooltipFooter", str);
str = ref.tooltipFooterIcon();
if(str!=null && str.length()>0)
f.stringvalue("tooltipFooterIcon", str);
switch(ref.priority()) {
case TOP: f.stringvalue("priority", "top"); break;
case MEDIUM: f.stringvalue("priority", "medium"); break;
case LOW: f.stringvalue("priority", "low"); break;
}
f.write();
if (ref.separatorAfter() != Integer.MAX_VALUE) {
if (ref.position() == Integer.MAX_VALUE || ref.position() >= ref.separatorAfter()) {
throw new LayerGenerationException("separatorAfter() must be greater than position()", e, processingEnv, ref);
}
File after = layer(e).file(ref.path() + "/" + name + "-separatorAfter.instance");
after.newvalue("instanceCreate", JSeparator.class.getName());
after.position(ref.separatorAfter());
after.write();
}
if (ref.separatorBefore() != Integer.MAX_VALUE) {
if (ref.position() == Integer.MAX_VALUE || ref.position() <= ref.separatorBefore()) {
throw new LayerGenerationException("separatorBefore() must be lower than position()", e, processingEnv, ref);
}
File before = layer(e).file(ref.path() + "/" + name + "-separatorBefore.instance");
before.newvalue("instanceCreate", JSeparator.class.getName());
before.position(ref.separatorBefore());
before.write();
}
}