blob: dd1c595bbb5ec094d1f48ee7f3f132d6e8ae7181 [file] [log] [blame]
//
// 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.
//
= DevFaqAddFileTemplateToNewFileContentMenu
:jbake-type: wiki
:jbake-tags: wiki, devfaq, needsreview
:jbake-status: published
:keywords: Apache NetBeans wiki DevFaqAddFileTemplateToNewFileContentMenu
:description: Apache NetBeans wiki DevFaqAddFileTemplateToNewFileContentMenu
:toc: left
:toc-title:
:syntax: true
== How can I define the available File types when the user right-clicks the project folder and chooses "New"?
See documentation of "Privileged and Recommended Templates" at
link:http://bits.netbeans.org/dev/javadoc/org-netbeans-modules-projectuiapi/org/netbeans/spi/project/ui/templates/support/package-summary.html[http://bits.netbeans.org/dev/javadoc/org-netbeans-modules-projectuiapi/org/netbeans/spi/project/ui/templates/support/package-summary.html]
Example:
`
[source,java]
----
import org.netbeans.spi.project.ProjectServiceProvider;
import org.netbeans.spi.project.ui.PrivilegedTemplates;
@ProjectServiceProvider(projectType = "org-netbeans-modules-cnd-makeproject", service = PrivilegedTemplates.class)
public class NescPrivilegedTemplates implements PrivilegedTemplates {
private static final String[] PRIVILEGED_NAMES = new String[]{
"Templates/Nesc/EmptyTemplate.nc",
"Templates/Nesc/SimpleTemplate.nc",
};
@Override
public String[] getPrivilegedTemplates() {
return PRIVILEGED_NAMES;
}
}
----
`
Taken from Geertjan @ dev@platform.netbeans.org
Further examples:
* link:https://blogs.oracle.com/geertjan/entry/privileged_and_recommended_templates[https://blogs.oracle.com/geertjan/entry/privileged_and_recommended_templates]
* link:https://blogs.oracle.com/geertjan/entry/nescide_an_ide_for_the[https://blogs.oracle.com/geertjan/entry/nescide_an_ide_for_the]
=== Apache Migration Information
The content in this page was kindly donated by Oracle Corp. to the
Apache Software Foundation.
This page was exported from link:http://wiki.netbeans.org/DevFaqAddFileTemplateToNewFileContentMenu[http://wiki.netbeans.org/DevFaqAddFileTemplateToNewFileContentMenu] ,
that was last modified by NetBeans user Markiewb
on 2013-08-10T16:08:13Z.
*NOTE:* This document was automatically converted to the AsciiDoc format on 2018-02-07, and needs to be reviewed.