blob: ed8ad1f12e1373f4a0ab614ec67dc397ede3fd49 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.internal.ui.views.console;
import org.eclipse.debug.internal.ui.DebugUIPlugin;
/**
* A partition in a console document that contains output from a process.
*/
public class OutputPartition extends StreamPartition {
/**
* Partition type
*/
public static final String OUTPUT_PARTITION_TYPE = DebugUIPlugin.getUniqueIdentifier() + ".OUTPUT_PARTITION_TYPE"; //$NON-NLS-1$
public OutputPartition(String streamIdentifier, int offset, int length) {
super(streamIdentifier, offset, length, OUTPUT_PARTITION_TYPE);
}
/**
* @see org.eclipse.debug.internal.ui.views.console.StreamPartition#createNewPartition(String, int, int)
*/
public StreamPartition createNewPartition(String streamIdetifier, int offset, int length) {
return new OutputPartition(streamIdetifier, offset, length);
}
}