2006/unicorn/src/org/w3c/unicorn/output AttachmentOutputFormater.java,NONE,1.1

Update of /sources/public/2006/unicorn/src/org/w3c/unicorn/output
In directory hutz:/tmp/cvs-serv26882/src/org/w3c/unicorn/output

Added Files:
	AttachmentOutputFormater.java 
Log Message:
new outputFormater


--- NEW FILE: AttachmentOutputFormater.java ---
package org.w3c.unicorn.output;

public class AttachmentOutputFormater extends SimpleOutputFormater {

	private String fileName;
	
	public AttachmentOutputFormater(String format, String lang, String mimeType, String fileName) {
		super(format, lang, mimeType);
		this.fileName = fileName;	
	}

	public String getFileName() {
		return fileName;
	}

	public void setFileName(String fileName) {
		this.fileName = fileName;
	}

}

Received on Friday, 9 October 2009 06:46:10 UTC