1 11 package org.eclipse.debug.internal.ui.views.console; 12 13 14 import org.eclipse.debug.internal.ui.DebugUIPlugin; 15 16 20 public class BreakPartition extends StreamPartition { 21 22 25 public static final String BREAK_PARTITION_TYPE = DebugUIPlugin.getUniqueIdentifier() + ".BREAK_PARTITION_TYPE"; 27 28 public BreakPartition(String streamIdentifier, int offset, int length) { 29 super(streamIdentifier, offset, length, BREAK_PARTITION_TYPE); 30 } 31 32 35 public StreamPartition createNewPartition(String streamIdentifier, int offset, int length) { 36 return new BreakPartition(streamIdentifier, offset, length); 37 } 38 39 } 40 | Popular Tags |