FileDocCategorySizeDatePackage
StringTransferValue.javaAPI Docmp4parser 1.0-RC-17979Wed Dec 19 20:10:21 GMT 2012com.coremedia.iso.gui.transferhelper

StringTransferValue

public class StringTransferValue extends Object implements TransferValue
Created by IntelliJ IDEA. User: sannies Date: 11.11.2008 Time: 23:12:10 To change this template use File | Settings | File Templates.

Fields Summary
JTextField
source
Method
writeMethod
com.coremedia.iso.boxes.Box
box
Constructors Summary
public StringTransferValue(JTextField source, com.coremedia.iso.boxes.Box box, Method writeMethod)

        this.source = source;
        this.writeMethod = writeMethod;
        this.box = box;
    
Methods Summary
public voidgo()

        try {
            writeMethod.invoke(box, source.getText());
        } catch (InvocationTargetException e) {
            throw new RuntimeException(e);
        } catch (IllegalAccessException e) {
            throw new RuntimeException(e);
        }