- suppress warnings across SDK
This commit is contained in:
parent
2007cd5543
commit
b98db36a2d
@ -22,6 +22,7 @@ import org.openide.util.HelpCtx;
|
||||
*
|
||||
* @author normenhansen
|
||||
*/
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class MobileCustomizerPanel extends javax.swing.JPanel implements ActionListener {
|
||||
|
||||
private ProjectExtensionProperties properties;
|
||||
|
@ -8,6 +8,7 @@ import java.awt.GraphicsEnvironment;
|
||||
import javax.swing.ImageIcon;
|
||||
import javax.swing.JPanel;
|
||||
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public final class AngelFontVisualPanel1 extends JPanel {
|
||||
|
||||
String selectedFont = "";
|
||||
|
@ -8,6 +8,7 @@ import java.awt.Font;
|
||||
import javax.swing.ImageIcon;
|
||||
import javax.swing.JPanel;
|
||||
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public final class AngelFontVisualPanel2 extends JPanel {
|
||||
|
||||
String fontName = "";
|
||||
|
@ -26,6 +26,7 @@ import org.openide.filesystems.FileObject;
|
||||
import org.openide.filesystems.FileUtil;
|
||||
import org.openide.util.Exceptions;
|
||||
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public final class AngelFontWizardIterator implements WizardDescriptor.InstantiatingIterator {
|
||||
|
||||
private int index;
|
||||
|
@ -9,6 +9,7 @@ import javax.swing.event.ChangeListener;
|
||||
import org.openide.WizardDescriptor;
|
||||
import org.openide.util.HelpCtx;
|
||||
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class AngelFontWizardPanel1 implements WizardDescriptor.Panel {
|
||||
|
||||
/**
|
||||
|
@ -9,6 +9,7 @@ import javax.swing.event.ChangeListener;
|
||||
import org.openide.WizardDescriptor;
|
||||
import org.openide.util.HelpCtx;
|
||||
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class AngelFontWizardPanel2 implements WizardDescriptor.Panel {
|
||||
|
||||
/**
|
||||
|
@ -23,6 +23,7 @@ import org.w3c.dom.Element;
|
||||
*
|
||||
* @author normenhansen
|
||||
*/
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class VariationSelection extends javax.swing.JDialog {
|
||||
|
||||
List<SelectionEntry> list;
|
||||
|
@ -24,6 +24,7 @@ import org.netbeans.api.project.ui.OpenProjects;
|
||||
*
|
||||
* @author normenhansen
|
||||
*/
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class ProjectSelection extends javax.swing.JDialog {
|
||||
|
||||
private List<Project> projects;
|
||||
|
@ -25,6 +25,7 @@ import org.openide.util.actions.SystemAction;
|
||||
*/
|
||||
@ConvertAsProperties(dtd = "-//com.jme3.gde.assetpack.browser//AssetPackBrowser//EN",
|
||||
autostore = false)
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public final class AssetPackBrowserTopComponent extends TopComponent implements ExplorerManager.Provider {
|
||||
|
||||
private static AssetPackBrowserTopComponent instance;
|
||||
|
@ -26,7 +26,7 @@ import org.openide.WizardDescriptor;
|
||||
import org.openide.filesystems.FileObject;
|
||||
import org.openide.filesystems.FileUtil;
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public final class ConvertOgreBinaryMeshesAction implements Action {
|
||||
|
||||
private final Project context;
|
||||
|
@ -24,7 +24,7 @@ import org.openide.WizardDescriptor;
|
||||
import org.openide.filesystems.FileUtil;
|
||||
import org.w3c.dom.Element;
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public final class ImportAssetAction implements Action {
|
||||
|
||||
private final AssetPackProject context;
|
||||
|
@ -47,6 +47,7 @@ import org.w3c.dom.Document;
|
||||
import org.w3c.dom.Element;
|
||||
import org.xml.sax.InputSource;
|
||||
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public final class ImportWorldForgeAction implements Action {
|
||||
|
||||
private final AssetPackProject project;
|
||||
|
@ -33,7 +33,7 @@ import org.openide.filesystems.FileObject;
|
||||
import org.openide.filesystems.FileUtil;
|
||||
import org.openide.util.NbPreferences;
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public final class PublishAssetPackAction implements Action {
|
||||
|
||||
private final Project context;
|
||||
|
@ -9,6 +9,7 @@ import javax.swing.event.ChangeListener;
|
||||
import org.openide.WizardDescriptor;
|
||||
import org.openide.util.HelpCtx;
|
||||
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class ConvertOgreBinaryWizardPanel1 implements WizardDescriptor.Panel {
|
||||
|
||||
/**
|
||||
|
@ -30,6 +30,7 @@ import org.xml.sax.InputSource;
|
||||
|
||||
// An example action demonstrating how the wizard could be called from within
|
||||
// your code. You can copy-paste the code below wherever you need.
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public final class CreateProjectWizardIterator implements WizardDescriptor.InstantiatingIterator {
|
||||
|
||||
private int index;
|
||||
|
@ -7,6 +7,7 @@ package com.jme3.gde.assetpack.project.wizards;
|
||||
import javax.swing.JPanel;
|
||||
import org.openide.WizardDescriptor;
|
||||
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public final class ImportVisualPanel1 extends JPanel {
|
||||
|
||||
/** Creates new form ImportVisualPanel1 */
|
||||
|
@ -9,6 +9,7 @@ import javax.swing.event.ChangeListener;
|
||||
import org.openide.WizardDescriptor;
|
||||
import org.openide.util.HelpCtx;
|
||||
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class PublishAssetPackWizardPanel1 implements WizardDescriptor.Panel {
|
||||
|
||||
/**
|
||||
|
@ -18,6 +18,7 @@ import java.util.List;
|
||||
*
|
||||
* @author normenhansen
|
||||
*/
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class SingleAssetFilePanel extends javax.swing.JPanel {
|
||||
|
||||
FileDescription desc;
|
||||
|
@ -55,6 +55,7 @@ import org.openide.util.Exceptions;
|
||||
*
|
||||
* @author normenhansen
|
||||
*/
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class AppStateNode extends AbstractNode implements ScenePropertyChangeListener, SceneSyncListener {
|
||||
|
||||
protected AppState appState;
|
||||
|
@ -55,6 +55,7 @@ import org.netbeans.api.project.SourceGroup;
|
||||
import org.netbeans.api.project.Sources;
|
||||
import org.openide.util.Exceptions;
|
||||
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public final class NewAppStateVisualPanel1 extends JPanel {
|
||||
|
||||
private Project proj;
|
||||
|
@ -78,6 +78,7 @@ displayName = "#CTL_RunAppState")
|
||||
@ActionReference(path = "Editors/text/x-java/Popup", position = 1740)
|
||||
})
|
||||
@Messages("CTL_RunAppState=Run AppState")
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class RunAppStateAction implements ContextAwareAction {
|
||||
|
||||
private static final Logger logger = Logger.getLogger(RunAppStateAction.class.getName());
|
||||
|
@ -61,7 +61,7 @@ import org.openide.util.Mutex.Action;
|
||||
*
|
||||
* @author normenhansen
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class AssetData {
|
||||
|
||||
private static final Logger logger = Logger.getLogger(AssetData.class.getName());
|
||||
|
@ -72,7 +72,7 @@ import org.openide.util.lookup.ProxyLookup;
|
||||
*
|
||||
* @author normenhansen
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class AssetDataObject extends MultiDataObject {
|
||||
|
||||
protected static final Logger logger = Logger.getLogger(AssetDataObject.class.getName());
|
||||
|
@ -75,7 +75,7 @@ import org.openide.util.lookup.Lookups;
|
||||
*
|
||||
* @author normenhansen
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class ProjectAssetManager extends DesktopAssetManager {
|
||||
|
||||
private static final Logger logger = Logger.getLogger(ProjectAssetManager.class.getName());
|
||||
|
@ -55,7 +55,7 @@ import org.openide.util.lookup.ProxyLookup;
|
||||
*
|
||||
* @author normenhansen
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public abstract class AbstractSceneExplorerNode extends AbstractNode implements SceneExplorerNode, ScenePropertyChangeListener, SceneSyncListener {
|
||||
|
||||
protected Children jmeChildren;
|
||||
|
@ -55,6 +55,7 @@ import org.openide.util.RequestProcessor;
|
||||
*
|
||||
* @author normenhansen
|
||||
*/
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class JreDownloader {
|
||||
|
||||
private static final Logger logger = Logger.getLogger(JreDownloader.class.getName());
|
||||
|
@ -21,6 +21,7 @@ import org.openide.util.Exceptions;
|
||||
*
|
||||
* @author normenhansen
|
||||
*/
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class ImportKeyNode extends AbstractNode {
|
||||
private AssetKey key;
|
||||
|
||||
|
@ -60,7 +60,7 @@ displayName = "#CTL_ImportModel")
|
||||
@ActionReference(path = "Toolbars/File", position = 310)
|
||||
})
|
||||
@NbBundle.Messages("CTL_SomeAction=test")
|
||||
@SuppressWarnings("unchecked")
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public final class ImportModel implements ActionListener {
|
||||
|
||||
private static final Logger logger = Logger.getLogger(ImportModel.class.getName());
|
||||
|
@ -19,7 +19,7 @@ import org.openide.loaders.DataObjectNotFoundException;
|
||||
import org.openide.nodes.Node;
|
||||
import org.openide.util.Exceptions;
|
||||
|
||||
@SuppressWarnings({"unchecked", "serial"})
|
||||
@SuppressWarnings({"unchecked", "serial", "rawtypes"})
|
||||
public final class ModelImporterVisualPanel1 extends JPanel {
|
||||
|
||||
private ModelImporterWizardPanel1 panel;
|
||||
|
@ -21,7 +21,7 @@ import org.openide.WizardDescriptor;
|
||||
import org.openide.filesystems.FileObject;
|
||||
import org.openide.util.Exceptions;
|
||||
|
||||
@SuppressWarnings({"unchecked", "serial"})
|
||||
@SuppressWarnings({"unchecked", "serial", "rawtypes"})
|
||||
public final class ModelImporterVisualPanel3 extends JPanel {
|
||||
|
||||
private static final Logger logger = Logger.getLogger(ModelImporterVisualPanel3.class.getName());
|
||||
|
@ -13,6 +13,7 @@ import javax.swing.event.ChangeListener;
|
||||
import org.openide.WizardDescriptor;
|
||||
import org.openide.util.HelpCtx;
|
||||
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class ModelImporterWizardPanel1 implements WizardDescriptor.Panel {
|
||||
|
||||
/**
|
||||
|
@ -9,6 +9,7 @@ import javax.swing.event.ChangeListener;
|
||||
import org.openide.WizardDescriptor;
|
||||
import org.openide.util.HelpCtx;
|
||||
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class ModelImporterWizardPanel4 implements WizardDescriptor.Panel {
|
||||
|
||||
/**
|
||||
|
@ -24,6 +24,7 @@ import org.netbeans.api.project.ui.OpenProjects;
|
||||
*
|
||||
* @author normenhansen
|
||||
*/
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class ProjectSelection extends javax.swing.JDialog {
|
||||
|
||||
private List<Project> projects;
|
||||
|
@ -57,6 +57,7 @@ import org.openide.util.Exceptions;
|
||||
*
|
||||
* @author normenhansen
|
||||
*/
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class UberAssetLocator implements AssetLocator {
|
||||
//ugly static due to Locator instantiation
|
||||
|
||||
|
@ -42,6 +42,7 @@ import org.openide.windows.WindowManager;
|
||||
dtd="-//com.sploreg.tritium.editor.navmesh//NavMesh//EN",
|
||||
autostore=false
|
||||
)
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public final class NavMeshTopComponent extends TopComponent implements SceneListener, LookupListener {
|
||||
|
||||
private static NavMeshTopComponent instance;
|
||||
|
@ -20,6 +20,7 @@ import org.openide.util.Exceptions;
|
||||
*
|
||||
* @author normenhansen
|
||||
*/
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class NavMeshGeneratorNode extends AbstractNode {
|
||||
|
||||
private NavMeshGenerator key;
|
||||
|
@ -32,6 +32,7 @@ import org.openide.DialogDisplayer;
|
||||
import org.openide.WizardDescriptor;
|
||||
|
||||
@org.openide.util.lookup.ServiceProvider(service = NewSpatialAction.class)
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public final class NewNavMeshWizardAction extends AbstractNewSpatialWizardAction {
|
||||
|
||||
private WizardDescriptor.Panel[] panels;
|
||||
|
@ -9,6 +9,7 @@ import javax.swing.event.ChangeListener;
|
||||
import org.openide.WizardDescriptor;
|
||||
import org.openide.util.HelpCtx;
|
||||
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class NewNavMeshWizardPanel1 implements WizardDescriptor.Panel {
|
||||
|
||||
/**
|
||||
|
@ -54,6 +54,7 @@ import org.openide.util.Exceptions;
|
||||
@ActionReference(id =
|
||||
@ActionID(category = "System", id = "org.openide.actions.PropertiesAction"), path = "Loaders/application/ogrebinarymesh/Actions", position = 1300)
|
||||
})
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class OgreBinaryMeshDataObject extends SpatialAssetDataObject {
|
||||
|
||||
public OgreBinaryMeshDataObject(FileObject pf, MultiFileLoader loader) throws DataObjectExistsException, IOException {
|
||||
|
@ -32,6 +32,7 @@ import org.openide.NotifyDescriptor.Confirmation;
|
||||
*
|
||||
* @author normenhansen
|
||||
*/
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class InstallBlenderExporterPanel extends javax.swing.JDialog {
|
||||
|
||||
/** Creates new form InstallBlenderExporterPanel */
|
||||
|
@ -58,7 +58,7 @@ import org.openide.util.Lookup;
|
||||
* do.. methods do not use global variables.
|
||||
* @author normenhansen
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class SceneEditorController implements PropertyChangeListener, NodeListener {
|
||||
|
||||
private final JmeSpatial jmeRootNode;
|
||||
|
@ -61,6 +61,7 @@ import org.w3c.dom.Element;
|
||||
import org.w3c.dom.NodeList;
|
||||
import org.xml.sax.InputSource;
|
||||
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class BasicGameWizardIterator implements WizardDescriptor./*Progress*/InstantiatingIterator {
|
||||
|
||||
private int index;
|
||||
|
@ -44,6 +44,7 @@ import org.openide.util.NbBundle;
|
||||
/**
|
||||
* Panel just asking for basic info.
|
||||
*/
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class BasicGameWizardPanel implements WizardDescriptor.Panel,
|
||||
WizardDescriptor.ValidatingPanel, WizardDescriptor.FinishablePanel {
|
||||
|
||||
|
@ -38,6 +38,7 @@ import org.openide.util.Exceptions;
|
||||
* @author normenhansen
|
||||
*/
|
||||
@org.openide.util.lookup.ServiceProvider(service = NewSpatialAction.class)
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class AddTerrainAction extends AbstractNewSpatialWizardAction {
|
||||
|
||||
private WizardDescriptor.Panel[] panels;
|
||||
|
@ -11,6 +11,7 @@ import javax.swing.JComboBox;
|
||||
import javax.swing.JPanel;
|
||||
import javax.swing.JTextField;
|
||||
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public final class CreateTerrainVisualPanel2 extends JPanel {
|
||||
|
||||
//String[] types = {"Flat", "Image Based", "Hill", "Fault Fractal"};
|
||||
|
@ -42,6 +42,7 @@ import org.openide.util.actions.CallableSystemAction;
|
||||
|
||||
// An example action demonstrating how the wizard could be called from within
|
||||
// your code. You can copy-paste the code below wherever you need.
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public final class CreateTerrainWizardAction extends CallableSystemAction {
|
||||
|
||||
private WizardDescriptor.Panel[] panels;
|
||||
|
@ -36,6 +36,7 @@ import javax.swing.event.ChangeListener;
|
||||
import org.openide.WizardDescriptor;
|
||||
import org.openide.util.HelpCtx;
|
||||
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class CreateTerrainWizardPanel1 implements WizardDescriptor.Panel {
|
||||
|
||||
/**
|
||||
|
@ -41,6 +41,7 @@ import org.openide.util.HelpCtx;
|
||||
*
|
||||
* @author bowens
|
||||
*/
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class CreateTerrainWizardPanel3 implements WizardDescriptor.Panel {
|
||||
|
||||
/**
|
||||
|
@ -86,7 +86,7 @@ import org.openide.util.lookup.InstanceContent;
|
||||
*
|
||||
* @author normenhansen, bowens
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class TerrainEditorController implements NodeListener {
|
||||
private JmeSpatial jmeRootNode;
|
||||
private JmeSpatial selectedSpat;
|
||||
|
@ -102,6 +102,7 @@ import org.openide.windows.WindowManager;
|
||||
*/
|
||||
@ConvertAsProperties(dtd = "-//com.jme3.gde.terraineditor//TerrainEditor//EN",
|
||||
autostore = false)
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public final class TerrainEditorTopComponent extends TopComponent implements SceneListener, LookupListener {
|
||||
|
||||
private static TerrainEditorTopComponent instance;
|
||||
|
@ -24,6 +24,7 @@ import org.openide.WizardDescriptor;
|
||||
* @author normenhansen
|
||||
*/
|
||||
@org.openide.util.lookup.ServiceProvider(service = NewSpatialAction.class)
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class AddSkyboxAction extends AbstractNewSpatialWizardAction {
|
||||
|
||||
private WizardDescriptor.Panel[] panels;
|
||||
|
@ -34,6 +34,7 @@ package com.jme3.gde.terraineditor.sky;
|
||||
import javax.swing.JComboBox;
|
||||
import javax.swing.JPanel;
|
||||
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public final class SkyboxVisualPanel1 extends JPanel {
|
||||
|
||||
/** Creates new form SkyboxVisualPanel1 */
|
||||
|
@ -43,6 +43,7 @@ import org.openide.util.actions.CallableSystemAction;
|
||||
|
||||
// An example action demonstrating how the wizard could be called from within
|
||||
// your code. You can copy-paste the code below wherever you need.
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public final class SkyboxWizardAction extends CallableSystemAction {
|
||||
|
||||
private WizardDescriptor.Panel[] panels;
|
||||
|
@ -36,6 +36,7 @@ import javax.swing.event.ChangeListener;
|
||||
import org.openide.WizardDescriptor;
|
||||
import org.openide.util.HelpCtx;
|
||||
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class SkyboxWizardPanel1 implements WizardDescriptor.Panel {
|
||||
|
||||
/**
|
||||
|
@ -38,6 +38,7 @@ import javax.swing.event.ChangeListener;
|
||||
import org.openide.WizardDescriptor;
|
||||
import org.openide.util.HelpCtx;
|
||||
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class SkyboxWizardPanel2 implements WizardDescriptor.Panel {
|
||||
|
||||
/**
|
||||
|
@ -57,6 +57,7 @@ import org.openide.loaders.DataObject;
|
||||
*
|
||||
* @author Brent Owens, Shirkit
|
||||
*/
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public abstract class TerrainTool {
|
||||
|
||||
private static final Vector3f[] axisVectors = {
|
||||
|
@ -61,6 +61,7 @@ import org.w3c.dom.Element;
|
||||
import org.w3c.dom.NodeList;
|
||||
import org.xml.sax.InputSource;
|
||||
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class JME3TestsAndroidWizardIterator implements WizardDescriptor./*Progress*/InstantiatingIterator {
|
||||
|
||||
private int index;
|
||||
|
@ -44,6 +44,7 @@ import org.openide.util.NbBundle;
|
||||
/**
|
||||
* Panel just asking for basic info.
|
||||
*/
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class JME3TestsAndroidWizardPanel implements WizardDescriptor.Panel,
|
||||
WizardDescriptor.ValidatingPanel, WizardDescriptor.FinishablePanel {
|
||||
|
||||
|
@ -34,6 +34,7 @@ import org.w3c.dom.Element;
|
||||
import org.w3c.dom.NodeList;
|
||||
import org.xml.sax.InputSource;
|
||||
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class JmeTestsWizardIterator implements WizardDescriptor./*Progress*/InstantiatingIterator {
|
||||
|
||||
private int index;
|
||||
|
@ -17,6 +17,7 @@ import org.openide.util.NbBundle;
|
||||
/**
|
||||
* Panel just asking for basic info.
|
||||
*/
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class JmeTestsWizardPanel implements WizardDescriptor.Panel,
|
||||
WizardDescriptor.ValidatingPanel, WizardDescriptor.FinishablePanel {
|
||||
|
||||
|
@ -48,7 +48,7 @@ import org.openide.util.Utilities;
|
||||
*
|
||||
* @author normenhansen
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
public class VehicleEditorController implements LookupListener, ActionListener {
|
||||
|
||||
private JmeSpatial jmeRootNode;
|
||||
|
Loading…
x
Reference in New Issue
Block a user