org.krysalis.barcode4j.output.svg.AbstractSVGGeneratingCanvasProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of barcode4j-fop-ext-0.20.5-complete Show documentation
Show all versions of barcode4j-fop-ext-0.20.5-complete Show documentation
Barcode4J is a flexible generator for barcodes written in Java inclusive
extensions to support Apache FOP 0.20.5.
The newest version!
/*
* Copyright 2002-2004 Jeremias Maerki.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.krysalis.barcode4j.output.svg;
import org.krysalis.barcode4j.output.AbstractXMLGeneratingCanvasProvider;
import org.krysalis.barcode4j.output.BarcodeCanvasSetupException;
/**
* Abstract base class for implementations that generate SVG.
*
* @author Jeremias Maerki
* @version $Id: AbstractSVGGeneratingCanvasProvider.java,v 1.3 2006/11/07 16:43:36 jmaerki Exp $
*/
public abstract class AbstractSVGGeneratingCanvasProvider
extends AbstractXMLGeneratingCanvasProvider {
/** the SVG namespace: http://www.w3.org/2000/svg */
public static final String SVG_NAMESPACE = "http://www.w3.org/2000/svg";
private boolean useNamespace = true;
private String prefix = "";
/**
* Creates a new AbstractSVGCanvasProvider.
* @param useNamespace Controls whether namespaces should be used
* @param namespacePrefix the namespace prefix to use, null for no prefix
* @throws BarcodeCanvasSetupException if setting up the provider fails
*/
public AbstractSVGGeneratingCanvasProvider(boolean useNamespace, String namespacePrefix,
int orientation)
throws BarcodeCanvasSetupException {
super(orientation);
if (!useNamespace && namespacePrefix != null)
throw new IllegalArgumentException("No prefix allow when namespaces are enabled");
this.useNamespace = true;
this.prefix = namespacePrefix;
}
/**
* Creates a new AbstractSVGCanvasProvider with namespaces enabled.
* @param namespacePrefix the namespace prefix to use, null for no prefix
* @throws BarcodeCanvasSetupException if setting up the provider fails
*/
public AbstractSVGGeneratingCanvasProvider(String namespacePrefix, int orientation)
throws BarcodeCanvasSetupException {
this(true, namespacePrefix, orientation);
}
/**
* Creates a new AbstractSVGCanvasProvider.
* @param useNamespace Controls whether namespaces should be used
* @throws BarcodeCanvasSetupException if setting up the provider fails
*/
public AbstractSVGGeneratingCanvasProvider(boolean useNamespace, int orientation)
throws BarcodeCanvasSetupException {
this(useNamespace, null, orientation);
}
/**
* Creates a new AbstractSVGCanvasProvider with default settings (with
* namespaces, but without namespace prefix).
* @throws BarcodeCanvasSetupException if setting up the provider fails
*/
public AbstractSVGGeneratingCanvasProvider(int orientation)
throws BarcodeCanvasSetupException {
this(true, null, orientation);
}
/**
* Indicates whether namespaces are enabled.
* @return true if namespaces are enabled
*/
public boolean isNamespaceEnabled() {
return this.useNamespace;
}
/**
* Returns the namespace prefix
* @return the namespace prefix (may be null)
*/
public String getNamespacePrefix() {
return this.prefix;
}
/**
* Constructs a fully qualified element name based on the namespace
* settings.
* @param localName the local name
* @return the fully qualified name
*/
protected String getQualifiedName(String localName) {
if (prefix == null || "".equals(prefix)) {
return localName;
} else {
return prefix + ':' + localName;
}
}
}