blob: 347e3f3fc82b5fba09397d3f15fc302c96f27d5f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2002, 2011 Innoopract Informationssysteme GmbH and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Innoopract Informationssysteme GmbH - initial API and implementation
* EclipseSource - ongoing development
******************************************************************************/
package org.eclipse.swt.internal.widgets.textkit;
import java.io.IOException;
import org.eclipse.swt.widgets.Text;
abstract class AbstractTextDelegateLCA {
abstract void preserveValues( Text text );
abstract void readData( Text text );
abstract void renderInitialization( Text text ) throws IOException;
abstract void renderChanges( Text text ) throws IOException;
}