/******************************************************************************* * Copyright (c) 2007 Cambridge Semantics Incorporated. * 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: * Cambridge Semantics Incorporated *******************************************************************************/ package org.openanzo.rdf; /** * IRDFHandler that also specifies a RDF format. * * @author Joe Betz <jpbetz@cambridgesemantics.com> * */ public interface IRDFWriter extends IRDFHandler { /** * The RDFFormat for the writer * * @return The RDFFormat for the writer */ public abstract RDFFormat getRDFFormat(); }