From cd73f8b500f8f5a67c1efe147199bbdf7262545d Mon Sep 17 00:00:00 2001 From: Tomas Hurka Date: Wed, 16 Jun 2021 07:00:49 +0200 Subject: [PATCH] missing license fixed --- .../src/jsyntaxpane/lib/Installer.java | 24 ++++++++++++-- .../demoapplicationtype/AnagramAction.java | 24 ++++++++++++-- .../AnagramApplicationType.java | 24 ++++++++++++-- .../AnagramApplicationTypeFactory.java | 24 ++++++++++++-- .../demoapplicationtype/AnagramOverview.java | 24 ++++++++++++-- .../demoapplicationtype/Installer.java | 24 ++++++++++++-- .../src/org/hellovisualvm/Installer.java | 24 ++++++++++++-- .../hellovisualvm/HelloWorldViewSupport.java | 30 ++++++++++++++--- .../HelloWorldViewPlugin.java | 24 ++++++++++++-- .../netbeans/helloworldplugin/Installer.java | 24 ++++++++++++-- .../apptype/apptypeDescription.html | 24 ++++++++++++-- .../apptype/apptypePanelVisual.java | 24 ++++++++++++-- .../apptype/apptypeWizardIterator.java | 24 ++++++++++++-- .../apptype/apptypeWizardPanel.java | 24 ++++++++++++-- .../datasource/datasourceDescription.html | 24 ++++++++++++-- .../datasource/datasourcePanelVisual.java | 24 ++++++++++++-- .../datasource/datasourceWizardIterator.java | 24 ++++++++++++-- .../datasource/datasourceWizardPanel.java | 24 ++++++++++++-- .../hellovvm/hellovvmDescription.html | 24 ++++++++++++-- .../hellovvm/hellovvmPanelVisual.java | 24 ++++++++++++-- .../hellovvm/hellovvmWizardIterator.java | 24 ++++++++++++-- .../hellovvm/hellovvmWizardPanel.java | 24 ++++++++++++-- .../hostview/hostviewDescription.html | 24 ++++++++++++-- .../hostview/hostviewPanelVisual.java | 24 ++++++++++++-- .../hostview/hostviewWizardIterator.java | 24 ++++++++++++-- .../hostview/hostviewWizardPanel.java | 24 ++++++++++++-- .../jvmcaps/jvmcapsDescription.html | 24 ++++++++++++-- .../jvmcaps/jvmcapsPanelVisual.java | 24 ++++++++++++-- .../jvmcaps/jvmcapsWizardIterator.java | 24 ++++++++++++-- .../jvmcaps/jvmcapsWizardPanel.java | 24 ++++++++++++-- .../pluggableViewDemoSuiteDescription.html | 24 ++++++++++++-- .../pluggableViewDemoSuitePanelVisual.java | 24 ++++++++++++-- .../pluggableViewDemoSuiteWizardIterator.java | 24 ++++++++++++-- .../pluggableViewDemoSuiteWizardPanel.java | 24 ++++++++++++-- .../subnodes/subnodesDescription.html | 24 ++++++++++++-- .../subnodes/subnodesPanelVisual.java | 24 ++++++++++++-- .../subnodes/subnodesWizardIterator.java | 24 ++++++++++++-- .../subnodes/subnodesWizardPanel.java | 24 ++++++++++++-- .../apisupport/docs/visualvmview-about.html | 32 +++++++++++++++---- .../apisupport/docs/visualvmview-hs.xml | 24 ++++++++++++-- .../apisupport/docs/visualvmview-idx.xml | 24 ++++++++++++-- .../apisupport/docs/visualvmview-map.xml | 24 ++++++++++++-- .../apisupport/docs/visualvmview-toc.xml | 26 +++++++++++++-- .../apisupport/actions/Bundle.properties | 26 +++++++++++++-- .../apisupport/actions/visualVMAction.html | 24 ++++++++++++-- .../apisupport/apptypes/Bundle.properties | 26 +++++++++++++-- .../apisupport/apptypes/visualVMAppType.html | 24 ++++++++++++-- .../apisupport/datasources/Bundle.properties | 26 +++++++++++++-- .../datasources/visualVMDatasource.html | 26 +++++++++++++-- .../apisupport/models/Bundle.properties | 26 +++++++++++++-- .../apisupport/models/visualVMModel.html | 26 +++++++++++++-- .../apisupport/subtabs/Bundle.properties | 26 +++++++++++++-- .../apisupport/subtabs/visualVMSubTab.html | 24 ++++++++++++-- .../apisupport/tabs/Bundle.properties | 26 +++++++++++++-- .../apisupport/tabs/visualVMView.html | 26 +++++++++++++-- .../apisupport/tabs/visualvmview-helpset.xml | 24 ++++++++++++-- 56 files changed, 1249 insertions(+), 129 deletions(-) diff --git a/plugins/jsyntaxpane-lib/src/jsyntaxpane/lib/Installer.java b/plugins/jsyntaxpane-lib/src/jsyntaxpane/lib/Installer.java index 6f4c41bedd..be69219832 100644 --- a/plugins/jsyntaxpane-lib/src/jsyntaxpane/lib/Installer.java +++ b/plugins/jsyntaxpane-lib/src/jsyntaxpane/lib/Installer.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package jsyntaxpane.lib; diff --git a/samples/apptype/src/org/visualvm/demoapplicationtype/AnagramAction.java b/samples/apptype/src/org/visualvm/demoapplicationtype/AnagramAction.java index aab6774084..32226a7591 100644 --- a/samples/apptype/src/org/visualvm/demoapplicationtype/AnagramAction.java +++ b/samples/apptype/src/org/visualvm/demoapplicationtype/AnagramAction.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.visualvm.demoapplicationtype; diff --git a/samples/apptype/src/org/visualvm/demoapplicationtype/AnagramApplicationType.java b/samples/apptype/src/org/visualvm/demoapplicationtype/AnagramApplicationType.java index 22446661fb..bb12769ce0 100644 --- a/samples/apptype/src/org/visualvm/demoapplicationtype/AnagramApplicationType.java +++ b/samples/apptype/src/org/visualvm/demoapplicationtype/AnagramApplicationType.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.visualvm.demoapplicationtype; diff --git a/samples/apptype/src/org/visualvm/demoapplicationtype/AnagramApplicationTypeFactory.java b/samples/apptype/src/org/visualvm/demoapplicationtype/AnagramApplicationTypeFactory.java index ce55e5af6e..10f1cf04c5 100644 --- a/samples/apptype/src/org/visualvm/demoapplicationtype/AnagramApplicationTypeFactory.java +++ b/samples/apptype/src/org/visualvm/demoapplicationtype/AnagramApplicationTypeFactory.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.visualvm.demoapplicationtype; diff --git a/samples/apptype/src/org/visualvm/demoapplicationtype/AnagramOverview.java b/samples/apptype/src/org/visualvm/demoapplicationtype/AnagramOverview.java index d9e8e2bba5..05f0457cb0 100644 --- a/samples/apptype/src/org/visualvm/demoapplicationtype/AnagramOverview.java +++ b/samples/apptype/src/org/visualvm/demoapplicationtype/AnagramOverview.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.visualvm.demoapplicationtype; diff --git a/samples/apptype/src/org/visualvm/demoapplicationtype/Installer.java b/samples/apptype/src/org/visualvm/demoapplicationtype/Installer.java index 6a3699515c..dafc4e63f5 100644 --- a/samples/apptype/src/org/visualvm/demoapplicationtype/Installer.java +++ b/samples/apptype/src/org/visualvm/demoapplicationtype/Installer.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.visualvm.demoapplicationtype; diff --git a/samples/hellovvm/src/org/hellovisualvm/Installer.java b/samples/hellovvm/src/org/hellovisualvm/Installer.java index 169bac2dc9..a44a63d612 100644 --- a/samples/hellovvm/src/org/hellovisualvm/Installer.java +++ b/samples/hellovvm/src/org/hellovisualvm/Installer.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.hellovisualvm; diff --git a/samples/pluggableViewDemoSuite/helloWorldPluggableView/src/org/hellovisualvm/HelloWorldViewSupport.java b/samples/pluggableViewDemoSuite/helloWorldPluggableView/src/org/hellovisualvm/HelloWorldViewSupport.java index e6109c13fb..fc71bdb695 100644 --- a/samples/pluggableViewDemoSuite/helloWorldPluggableView/src/org/hellovisualvm/HelloWorldViewSupport.java +++ b/samples/pluggableViewDemoSuite/helloWorldPluggableView/src/org/hellovisualvm/HelloWorldViewSupport.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.hellovisualvm; @@ -15,9 +35,9 @@ public class HelloWorldViewSupport { private static HelloWorldViewSupport instance; - + private HelloWorldViewProvider helloWorldPluggableView = new HelloWorldViewProvider(); - + public static synchronized HelloWorldViewSupport getInstance() { if (instance == null) { @@ -33,5 +53,5 @@ public PluggableDataSourceViewProvider getApplicationPluggableView() { public HelloWorldViewSupport() { DataSourceViewsManager.sharedInstance().addViewProvider(helloWorldPluggableView, Application.class); } - + } diff --git a/samples/pluggableViewDemoSuite/helloWorldViewPlugin/src/org/netbeans/helloworldplugin/HelloWorldViewPlugin.java b/samples/pluggableViewDemoSuite/helloWorldViewPlugin/src/org/netbeans/helloworldplugin/HelloWorldViewPlugin.java index c731168468..7fea35d821 100644 --- a/samples/pluggableViewDemoSuite/helloWorldViewPlugin/src/org/netbeans/helloworldplugin/HelloWorldViewPlugin.java +++ b/samples/pluggableViewDemoSuite/helloWorldViewPlugin/src/org/netbeans/helloworldplugin/HelloWorldViewPlugin.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.netbeans.helloworldplugin; diff --git a/samples/pluggableViewDemoSuite/helloWorldViewPlugin/src/org/netbeans/helloworldplugin/Installer.java b/samples/pluggableViewDemoSuite/helloWorldViewPlugin/src/org/netbeans/helloworldplugin/Installer.java index 5f7fe8aaab..d9a12093c8 100644 --- a/samples/pluggableViewDemoSuite/helloWorldViewPlugin/src/org/netbeans/helloworldplugin/Installer.java +++ b/samples/pluggableViewDemoSuite/helloWorldViewPlugin/src/org/netbeans/helloworldplugin/Installer.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.netbeans.helloworldplugin; diff --git a/samples/sampleBundle/src/org/nb/samplebundle/apptype/apptypeDescription.html b/samples/sampleBundle/src/org/nb/samplebundle/apptype/apptypeDescription.html index c39cd87736..9b48a770ce 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/apptype/apptypeDescription.html +++ b/samples/sampleBundle/src/org/nb/samplebundle/apptype/apptypeDescription.html @@ -1,6 +1,26 @@ diff --git a/samples/sampleBundle/src/org/nb/samplebundle/apptype/apptypePanelVisual.java b/samples/sampleBundle/src/org/nb/samplebundle/apptype/apptypePanelVisual.java index d1ddbcaebd..3c965e2e15 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/apptype/apptypePanelVisual.java +++ b/samples/sampleBundle/src/org/nb/samplebundle/apptype/apptypePanelVisual.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.nb.samplebundle.apptype; diff --git a/samples/sampleBundle/src/org/nb/samplebundle/apptype/apptypeWizardIterator.java b/samples/sampleBundle/src/org/nb/samplebundle/apptype/apptypeWizardIterator.java index b1c4d87ac6..df14d43fab 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/apptype/apptypeWizardIterator.java +++ b/samples/sampleBundle/src/org/nb/samplebundle/apptype/apptypeWizardIterator.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.nb.samplebundle.apptype; diff --git a/samples/sampleBundle/src/org/nb/samplebundle/apptype/apptypeWizardPanel.java b/samples/sampleBundle/src/org/nb/samplebundle/apptype/apptypeWizardPanel.java index 5603b6f71d..db64ea84b6 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/apptype/apptypeWizardPanel.java +++ b/samples/sampleBundle/src/org/nb/samplebundle/apptype/apptypeWizardPanel.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.nb.samplebundle.apptype; diff --git a/samples/sampleBundle/src/org/nb/samplebundle/datasource/datasourceDescription.html b/samples/sampleBundle/src/org/nb/samplebundle/datasource/datasourceDescription.html index 4c2b55905e..46fce552d8 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/datasource/datasourceDescription.html +++ b/samples/sampleBundle/src/org/nb/samplebundle/datasource/datasourceDescription.html @@ -1,6 +1,26 @@ diff --git a/samples/sampleBundle/src/org/nb/samplebundle/datasource/datasourcePanelVisual.java b/samples/sampleBundle/src/org/nb/samplebundle/datasource/datasourcePanelVisual.java index 956ff6291b..11da6ca7a3 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/datasource/datasourcePanelVisual.java +++ b/samples/sampleBundle/src/org/nb/samplebundle/datasource/datasourcePanelVisual.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.nb.samplebundle.datasource; diff --git a/samples/sampleBundle/src/org/nb/samplebundle/datasource/datasourceWizardIterator.java b/samples/sampleBundle/src/org/nb/samplebundle/datasource/datasourceWizardIterator.java index 873b744074..362f12c4ba 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/datasource/datasourceWizardIterator.java +++ b/samples/sampleBundle/src/org/nb/samplebundle/datasource/datasourceWizardIterator.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.nb.samplebundle.datasource; diff --git a/samples/sampleBundle/src/org/nb/samplebundle/datasource/datasourceWizardPanel.java b/samples/sampleBundle/src/org/nb/samplebundle/datasource/datasourceWizardPanel.java index 5571d49beb..2095cd951c 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/datasource/datasourceWizardPanel.java +++ b/samples/sampleBundle/src/org/nb/samplebundle/datasource/datasourceWizardPanel.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.nb.samplebundle.datasource; diff --git a/samples/sampleBundle/src/org/nb/samplebundle/hellovvm/hellovvmDescription.html b/samples/sampleBundle/src/org/nb/samplebundle/hellovvm/hellovvmDescription.html index fbf53a7246..f061b47a3c 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/hellovvm/hellovvmDescription.html +++ b/samples/sampleBundle/src/org/nb/samplebundle/hellovvm/hellovvmDescription.html @@ -1,6 +1,26 @@ diff --git a/samples/sampleBundle/src/org/nb/samplebundle/hellovvm/hellovvmPanelVisual.java b/samples/sampleBundle/src/org/nb/samplebundle/hellovvm/hellovvmPanelVisual.java index 344744531d..c486779c46 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/hellovvm/hellovvmPanelVisual.java +++ b/samples/sampleBundle/src/org/nb/samplebundle/hellovvm/hellovvmPanelVisual.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.nb.samplebundle.hellovvm; diff --git a/samples/sampleBundle/src/org/nb/samplebundle/hellovvm/hellovvmWizardIterator.java b/samples/sampleBundle/src/org/nb/samplebundle/hellovvm/hellovvmWizardIterator.java index e0a64342dd..4ab43a033d 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/hellovvm/hellovvmWizardIterator.java +++ b/samples/sampleBundle/src/org/nb/samplebundle/hellovvm/hellovvmWizardIterator.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.nb.samplebundle.hellovvm; diff --git a/samples/sampleBundle/src/org/nb/samplebundle/hellovvm/hellovvmWizardPanel.java b/samples/sampleBundle/src/org/nb/samplebundle/hellovvm/hellovvmWizardPanel.java index 99ece2fce9..5459f83840 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/hellovvm/hellovvmWizardPanel.java +++ b/samples/sampleBundle/src/org/nb/samplebundle/hellovvm/hellovvmWizardPanel.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.nb.samplebundle.hellovvm; diff --git a/samples/sampleBundle/src/org/nb/samplebundle/hostview/hostviewDescription.html b/samples/sampleBundle/src/org/nb/samplebundle/hostview/hostviewDescription.html index 41c9e2735d..8a323067f7 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/hostview/hostviewDescription.html +++ b/samples/sampleBundle/src/org/nb/samplebundle/hostview/hostviewDescription.html @@ -1,6 +1,26 @@ diff --git a/samples/sampleBundle/src/org/nb/samplebundle/hostview/hostviewPanelVisual.java b/samples/sampleBundle/src/org/nb/samplebundle/hostview/hostviewPanelVisual.java index a7cb8a027e..07a0867583 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/hostview/hostviewPanelVisual.java +++ b/samples/sampleBundle/src/org/nb/samplebundle/hostview/hostviewPanelVisual.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.nb.samplebundle.hostview; diff --git a/samples/sampleBundle/src/org/nb/samplebundle/hostview/hostviewWizardIterator.java b/samples/sampleBundle/src/org/nb/samplebundle/hostview/hostviewWizardIterator.java index ed84e988a2..95d9f7855d 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/hostview/hostviewWizardIterator.java +++ b/samples/sampleBundle/src/org/nb/samplebundle/hostview/hostviewWizardIterator.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.nb.samplebundle.hostview; diff --git a/samples/sampleBundle/src/org/nb/samplebundle/hostview/hostviewWizardPanel.java b/samples/sampleBundle/src/org/nb/samplebundle/hostview/hostviewWizardPanel.java index e46e6ba5e0..64d30ea16e 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/hostview/hostviewWizardPanel.java +++ b/samples/sampleBundle/src/org/nb/samplebundle/hostview/hostviewWizardPanel.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.nb.samplebundle.hostview; diff --git a/samples/sampleBundle/src/org/nb/samplebundle/jvmcaps/jvmcapsDescription.html b/samples/sampleBundle/src/org/nb/samplebundle/jvmcaps/jvmcapsDescription.html index 04297dd098..8ba991bcfd 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/jvmcaps/jvmcapsDescription.html +++ b/samples/sampleBundle/src/org/nb/samplebundle/jvmcaps/jvmcapsDescription.html @@ -1,6 +1,26 @@ diff --git a/samples/sampleBundle/src/org/nb/samplebundle/jvmcaps/jvmcapsPanelVisual.java b/samples/sampleBundle/src/org/nb/samplebundle/jvmcaps/jvmcapsPanelVisual.java index b71862cb12..b8a518b626 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/jvmcaps/jvmcapsPanelVisual.java +++ b/samples/sampleBundle/src/org/nb/samplebundle/jvmcaps/jvmcapsPanelVisual.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.nb.samplebundle.jvmcaps; diff --git a/samples/sampleBundle/src/org/nb/samplebundle/jvmcaps/jvmcapsWizardIterator.java b/samples/sampleBundle/src/org/nb/samplebundle/jvmcaps/jvmcapsWizardIterator.java index fe721ca3f9..9b5738994d 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/jvmcaps/jvmcapsWizardIterator.java +++ b/samples/sampleBundle/src/org/nb/samplebundle/jvmcaps/jvmcapsWizardIterator.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.nb.samplebundle.jvmcaps; diff --git a/samples/sampleBundle/src/org/nb/samplebundle/jvmcaps/jvmcapsWizardPanel.java b/samples/sampleBundle/src/org/nb/samplebundle/jvmcaps/jvmcapsWizardPanel.java index f7da0187de..581273c4d4 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/jvmcaps/jvmcapsWizardPanel.java +++ b/samples/sampleBundle/src/org/nb/samplebundle/jvmcaps/jvmcapsWizardPanel.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.nb.samplebundle.jvmcaps; diff --git a/samples/sampleBundle/src/org/nb/samplebundle/pluggableViewDemoSuite/pluggableViewDemoSuiteDescription.html b/samples/sampleBundle/src/org/nb/samplebundle/pluggableViewDemoSuite/pluggableViewDemoSuiteDescription.html index 8b984e5633..599e9ac901 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/pluggableViewDemoSuite/pluggableViewDemoSuiteDescription.html +++ b/samples/sampleBundle/src/org/nb/samplebundle/pluggableViewDemoSuite/pluggableViewDemoSuiteDescription.html @@ -1,6 +1,26 @@ diff --git a/samples/sampleBundle/src/org/nb/samplebundle/pluggableViewDemoSuite/pluggableViewDemoSuitePanelVisual.java b/samples/sampleBundle/src/org/nb/samplebundle/pluggableViewDemoSuite/pluggableViewDemoSuitePanelVisual.java index 6498c6c2ac..6d61690343 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/pluggableViewDemoSuite/pluggableViewDemoSuitePanelVisual.java +++ b/samples/sampleBundle/src/org/nb/samplebundle/pluggableViewDemoSuite/pluggableViewDemoSuitePanelVisual.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.nb.samplebundle.pluggableViewDemoSuite; diff --git a/samples/sampleBundle/src/org/nb/samplebundle/pluggableViewDemoSuite/pluggableViewDemoSuiteWizardIterator.java b/samples/sampleBundle/src/org/nb/samplebundle/pluggableViewDemoSuite/pluggableViewDemoSuiteWizardIterator.java index 2ddefd53f2..05489d44c2 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/pluggableViewDemoSuite/pluggableViewDemoSuiteWizardIterator.java +++ b/samples/sampleBundle/src/org/nb/samplebundle/pluggableViewDemoSuite/pluggableViewDemoSuiteWizardIterator.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.nb.samplebundle.pluggableViewDemoSuite; diff --git a/samples/sampleBundle/src/org/nb/samplebundle/pluggableViewDemoSuite/pluggableViewDemoSuiteWizardPanel.java b/samples/sampleBundle/src/org/nb/samplebundle/pluggableViewDemoSuite/pluggableViewDemoSuiteWizardPanel.java index c25848fca6..14327765e5 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/pluggableViewDemoSuite/pluggableViewDemoSuiteWizardPanel.java +++ b/samples/sampleBundle/src/org/nb/samplebundle/pluggableViewDemoSuite/pluggableViewDemoSuiteWizardPanel.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.nb.samplebundle.pluggableViewDemoSuite; diff --git a/samples/sampleBundle/src/org/nb/samplebundle/subnodes/subnodesDescription.html b/samples/sampleBundle/src/org/nb/samplebundle/subnodes/subnodesDescription.html index 159af7888f..ec0684dd59 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/subnodes/subnodesDescription.html +++ b/samples/sampleBundle/src/org/nb/samplebundle/subnodes/subnodesDescription.html @@ -1,6 +1,26 @@ diff --git a/samples/sampleBundle/src/org/nb/samplebundle/subnodes/subnodesPanelVisual.java b/samples/sampleBundle/src/org/nb/samplebundle/subnodes/subnodesPanelVisual.java index 8a045dbf01..2d7b1154a3 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/subnodes/subnodesPanelVisual.java +++ b/samples/sampleBundle/src/org/nb/samplebundle/subnodes/subnodesPanelVisual.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.nb.samplebundle.subnodes; diff --git a/samples/sampleBundle/src/org/nb/samplebundle/subnodes/subnodesWizardIterator.java b/samples/sampleBundle/src/org/nb/samplebundle/subnodes/subnodesWizardIterator.java index b50147aa11..3d83095f3c 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/subnodes/subnodesWizardIterator.java +++ b/samples/sampleBundle/src/org/nb/samplebundle/subnodes/subnodesWizardIterator.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.nb.samplebundle.subnodes; diff --git a/samples/sampleBundle/src/org/nb/samplebundle/subnodes/subnodesWizardPanel.java b/samples/sampleBundle/src/org/nb/samplebundle/subnodes/subnodesWizardPanel.java index a74be836aa..e6c15bb1b0 100644 --- a/samples/sampleBundle/src/org/nb/samplebundle/subnodes/subnodesWizardPanel.java +++ b/samples/sampleBundle/src/org/nb/samplebundle/subnodes/subnodesWizardPanel.java @@ -1,6 +1,26 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ package org.nb.samplebundle.subnodes; diff --git a/templates/apisupport/javahelp/org/graalvm/visualvm/apisupport/docs/visualvmview-about.html b/templates/apisupport/javahelp/org/graalvm/visualvm/apisupport/docs/visualvmview-about.html index 3ca0bba310..48e490a940 100644 --- a/templates/apisupport/javahelp/org/graalvm/visualvm/apisupport/docs/visualvmview-about.html +++ b/templates/apisupport/javahelp/org/graalvm/visualvm/apisupport/docs/visualvmview-about.html @@ -1,6 +1,26 @@ @@ -12,14 +32,14 @@

VisualVM View Wizard: Name and Location

The VisualVM View wizard creates a new VisualVM View - for a selected VisualVM data source. - You open the New VisualVM View wizard by right-clicking a + for a selected VisualVM data source. + You open the New VisualVM View wizard by right-clicking a module project, choosing New > Other and selecting VisualVM View from the Module Development category. -

+

In the Name and Location page, you have to set the following: