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