1 19 20 package org.netbeans.editor.ext; 21 22 30 31 public abstract class AbstractFormatLayer implements FormatLayer { 32 33 34 private String name; 35 36 37 public AbstractFormatLayer(String name) { 38 this.name = name; 39 } 40 41 public String getName() { 42 return name; 43 } 44 45 48 protected FormatSupport createFormatSupport(FormatWriter fw) { 49 return null; 50 } 51 52 } 53 | Popular Tags |