1 19 20 21 package org.netbeans.modules.editor.mimelookup.impl; 22 23 import org.netbeans.spi.editor.mimelookup.Class2LayerFolder; 24 28 public class TestClass2LayerFolderInitializerTwo implements Class2LayerFolder{ 29 30 31 public TestClass2LayerFolderInitializerTwo() { 32 } 33 34 public Class getClazz(){ 35 return TestLookupObjectTwo.class; 36 } 37 38 44 public String getLayerFolderName(){ 45 return "testLookupTwo"; 46 } 47 48 public org.netbeans.spi.editor.mimelookup.InstanceProvider getInstanceProvider() { 49 return null; 50 } 51 52 } 53 | Popular Tags |