1 20 21 package org.apache.directory.ldapstudio.browser.core.model.ldif.lines; 22 23 24 import org.apache.directory.ldapstudio.browser.core.BrowserCoreConstants; 25 26 27 public class LdifSepLine extends LdifLineBase 28 { 29 30 private static final long serialVersionUID = 1682910718363816158L; 31 32 33 protected LdifSepLine() 34 { 35 } 36 37 38 public LdifSepLine( int offset, String rawNewLine ) 39 { 40 super( offset, rawNewLine ); 41 } 42 43 44 public static LdifSepLine create() 45 { 46 return new LdifSepLine( 0, BrowserCoreConstants.LINE_SEPARATOR ); 47 } 48 49 } 50 | Popular Tags |