Java Code Examples for org.openide.windows.TopComponent#PERSISTENCE_NEVER

The following examples show how to use org.openide.windows.TopComponent#PERSISTENCE_NEVER . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: MultiViewEditorCreationFinishedTest.java    From netbeans with Apache License 2.0 5 votes vote down vote up
@MultiViewElement.Registration(
        displayName="editor",
        mimeType="text/x-compat-test",
        persistenceType=TopComponent.PERSISTENCE_NEVER,
        preferredID="editor"
)
public static MultiViewEditorElement create(Lookup lkp) {
    return new MultiViewEditorElement(lkp);
}
 
Example 2
Source File: ShowEffPomDiffAction.java    From netbeans with Apache License 2.0 4 votes vote down vote up
public @Override
int getPersistenceType() {
    return TopComponent.PERSISTENCE_NEVER;
}
 
Example 3
Source File: QueryBuilder.java    From netbeans with Apache License 2.0 4 votes vote down vote up
/*** do not save across IDE session ***/
public int getPersistenceType() {
    return TopComponent.PERSISTENCE_NEVER ;
}
 
Example 4
Source File: WelcomeComponent.java    From visualvm with GNU General Public License v2.0 4 votes vote down vote up
/** Overriden to explicitely set persistence type of WelcomeComponent
 * to PERSISTENCE_ALWAYS */
@Override public int getPersistenceType() {
    return TopComponent.PERSISTENCE_NEVER;
}
 
Example 5
Source File: InfoDBDescription.java    From BART with MIT License 4 votes vote down vote up
@Override
public int getPersistenceType() {
    return TopComponent.PERSISTENCE_NEVER;
}
 
Example 6
Source File: VerifierSupport.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override
public int getPersistenceType() {
    return TopComponent.PERSISTENCE_NEVER;
}
 
Example 7
Source File: MergeDialogComponent.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override
public int getPersistenceType() {
    return TopComponent.PERSISTENCE_NEVER;
}
 
Example 8
Source File: GraphMD.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override public int getPersistenceType() {
    return TopComponent.PERSISTENCE_NEVER;
}
 
Example 9
Source File: DependencyGraphTopComponent.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override
public int getPersistenceType() {
    return TopComponent.PERSISTENCE_NEVER;
}
 
Example 10
Source File: EditorTopComponent.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
@Override
public int getPersistenceType() {
    return TopComponent.PERSISTENCE_NEVER;
}
 
Example 11
Source File: EditorTopComponent.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
@Override
public int getPersistenceType() {
    return TopComponent.PERSISTENCE_NEVER;
}
 
Example 12
Source File: SearchHistoryTopComponent.java    From netbeans with Apache License 2.0 4 votes vote down vote up
public int getPersistenceType(){
   return TopComponent.PERSISTENCE_NEVER;
}
 
Example 13
Source File: ThreadDumpWindow.java    From visualvm with GNU General Public License v2.0 4 votes vote down vote up
public int getPersistenceType() {
    return TopComponent.PERSISTENCE_NEVER;
}
 
Example 14
Source File: CoverageReportTopComponent.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override
public int getPersistenceType() {
    return TopComponent.PERSISTENCE_NEVER;
}
 
Example 15
Source File: BasicDependencyMD.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override
public int getPersistenceType() {
    return TopComponent.PERSISTENCE_NEVER;
}
 
Example 16
Source File: BasicArtifactMD.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override
public int getPersistenceType() {
    return TopComponent.PERSISTENCE_NEVER;
}
 
Example 17
Source File: TableDataViewDescription.java    From BART with MIT License 4 votes vote down vote up
@Override
public int getPersistenceType() {
    return TopComponent.PERSISTENCE_NEVER;
}
 
Example 18
Source File: ThreadDumpWindow.java    From netbeans with Apache License 2.0 4 votes vote down vote up
public int getPersistenceType() {
    return TopComponent.PERSISTENCE_NEVER;
}
 
Example 19
Source File: EditorTopComponent.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@Override
public int getPersistenceType() {
    return TopComponent.PERSISTENCE_NEVER;
}
 
Example 20
Source File: DataSourceWindow.java    From visualvm with GNU General Public License v2.0 votes vote down vote up
public int getPersistenceType() { return TopComponent.PERSISTENCE_NEVER; }