mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-17 02:35:09 +00:00
Merge branch 'plantuml:master' into ImproveDoc
This commit is contained in:
commit
bb56bf2973
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
@ -0,0 +1 @@
|
||||
*.java text=auto
|
@ -47,9 +47,9 @@ import java.util.Locale;
|
||||
import java.util.Map;
|
||||
import java.util.TimeZone;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.ACearth;
|
||||
import ext.plantuml.com.ctreber.acearth.ConfigurationACearth;
|
||||
import ext.plantuml.com.ctreber.acearth.plugins.markers.Marker;
|
||||
import zext.plantuml.com.ctreber.acearth.ACearth;
|
||||
import zext.plantuml.com.ctreber.acearth.ConfigurationACearth;
|
||||
import zext.plantuml.com.ctreber.acearth.plugins.markers.Marker;
|
||||
import net.sourceforge.plantuml.AbstractPSystem;
|
||||
import net.sourceforge.plantuml.FileFormatOption;
|
||||
import net.sourceforge.plantuml.api.ImageDataSimple;
|
||||
|
@ -40,7 +40,7 @@ import java.util.LinkedHashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.plugins.markers.Marker;
|
||||
import zext.plantuml.com.ctreber.acearth.plugins.markers.Marker;
|
||||
import net.sourceforge.plantuml.command.PSystemBasicFactory;
|
||||
import net.sourceforge.plantuml.core.UmlSource;
|
||||
import net.sourceforge.plantuml.log.Logme;
|
||||
|
@ -61,7 +61,7 @@ public class CommandActivity3 extends SingleLineCommand2<ActivityDiagram3> {
|
||||
|
||||
public static final String endingGroup() {
|
||||
return "(" //
|
||||
+ ";(?:[%s]*(\\<\\<\\w+\\>\\>))?" //
|
||||
+ ";[%s]*(\\<\\<\\w+\\>\\>(?:[%s]*\\<\\<\\w+\\>\\>)*)?" //
|
||||
+ "|" //
|
||||
+ Matcher.quoteReplacement("\\\\") // that is simply \ character
|
||||
+ "|" //
|
||||
@ -77,7 +77,7 @@ public class CommandActivity3 extends SingleLineCommand2<ActivityDiagram3> {
|
||||
|
||||
private static final String endingGroupShort() {
|
||||
return "(" //
|
||||
+ ";(?:[%s]*(\\<\\<\\w+\\>\\>))?" //
|
||||
+ ";[%s]*(\\<\\<\\w+\\>\\>(?:[%s]*\\<\\<\\w+\\>\\>)*)?" //
|
||||
+ "|" //
|
||||
+ Matcher.quoteReplacement("\\\\") // that is simply \ character
|
||||
+ "|" //
|
||||
|
@ -41,12 +41,12 @@ import java.util.Hashtable;
|
||||
import java.util.concurrent.locks.Lock;
|
||||
import java.util.concurrent.locks.ReentrantLock;
|
||||
|
||||
import ext.plantuml.com.google.zxing.BarcodeFormat;
|
||||
import ext.plantuml.com.google.zxing.EncodeHintType;
|
||||
import ext.plantuml.com.google.zxing.client.j2se.MatrixToImageWriter;
|
||||
import ext.plantuml.com.google.zxing.common.BitMatrix;
|
||||
import ext.plantuml.com.google.zxing.qrcode.QRCodeWriter;
|
||||
import ext.plantuml.com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
|
||||
import zext.plantuml.com.google.zxing.BarcodeFormat;
|
||||
import zext.plantuml.com.google.zxing.EncodeHintType;
|
||||
import zext.plantuml.com.google.zxing.client.j2se.MatrixToImageWriter;
|
||||
import zext.plantuml.com.google.zxing.common.BitMatrix;
|
||||
import zext.plantuml.com.google.zxing.qrcode.QRCodeWriter;
|
||||
import zext.plantuml.com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
|
||||
import net.sourceforge.plantuml.utils.Log;
|
||||
|
||||
public class FlashCodeUtilsZxing implements FlashCodeUtils {
|
||||
|
@ -55,10 +55,10 @@ public class ActorAwesome extends AbstractTextBlock implements TextBlock {
|
||||
private final double radius = 8;
|
||||
private final double bodyHeight = 28;
|
||||
|
||||
private final Fashion symbolContext;
|
||||
private final Fashion fashion;
|
||||
|
||||
public ActorAwesome(Fashion symbolContext) {
|
||||
this.symbolContext = symbolContext.withStroke(UStroke.withThickness(1.5));
|
||||
public ActorAwesome(Fashion fashion) {
|
||||
this.fashion = fashion;
|
||||
}
|
||||
|
||||
public void drawU(UGraphic ug) {
|
||||
@ -81,18 +81,18 @@ public class ActorAwesome extends AbstractTextBlock implements TextBlock {
|
||||
path.cubicTo(-bodyWidth / 2 + shoulder + collar, collar, -collar, collar, 0, collar);
|
||||
path.closePath();
|
||||
|
||||
if (symbolContext.getDeltaShadow() != 0) {
|
||||
head.setDeltaShadow(symbolContext.getDeltaShadow());
|
||||
path.setDeltaShadow(symbolContext.getDeltaShadow());
|
||||
if (fashion.getDeltaShadow() != 0) {
|
||||
head.setDeltaShadow(fashion.getDeltaShadow());
|
||||
path.setDeltaShadow(fashion.getDeltaShadow());
|
||||
}
|
||||
ug = symbolContext.apply(ug);
|
||||
ug = fashion.apply(ug);
|
||||
ug.apply(new UTranslate(centerX - head.getWidth() / 2, thickness())).draw(head);
|
||||
ug.apply(new UTranslate(centerX, head.getHeight() + thickness())).draw(path);
|
||||
|
||||
}
|
||||
|
||||
private double thickness() {
|
||||
return symbolContext.getStroke().getThickness();
|
||||
return fashion.getStroke().getThickness();
|
||||
}
|
||||
|
||||
public double getPreferredWidth() {
|
||||
|
@ -57,10 +57,10 @@ public class ActorHollow extends AbstractTextBlock implements TextBlock {
|
||||
private final double bodyThickness = 6;
|
||||
private final double legThickness = 6;
|
||||
|
||||
private final Fashion symbolContext;
|
||||
private final Fashion fashion;
|
||||
|
||||
public ActorHollow(Fashion symbolContext) {
|
||||
this.symbolContext = symbolContext;
|
||||
public ActorHollow(Fashion fashion) {
|
||||
this.fashion = fashion;
|
||||
}
|
||||
|
||||
public void drawU(UGraphic ug) {
|
||||
@ -87,17 +87,17 @@ public class ActorHollow extends AbstractTextBlock implements TextBlock {
|
||||
path.lineTo(-bodyWidth / 2, 0);
|
||||
path.closePath();
|
||||
|
||||
if (symbolContext.getDeltaShadow() != 0) {
|
||||
head.setDeltaShadow(symbolContext.getDeltaShadow());
|
||||
path.setDeltaShadow(symbolContext.getDeltaShadow());
|
||||
if (fashion.getDeltaShadow() != 0) {
|
||||
head.setDeltaShadow(fashion.getDeltaShadow());
|
||||
path.setDeltaShadow(fashion.getDeltaShadow());
|
||||
}
|
||||
ug = symbolContext.apply(ug);
|
||||
ug = fashion.apply(ug);
|
||||
ug.apply(new UTranslate(centerX - head.getWidth() / 2, thickness())).draw(head);
|
||||
ug.apply(new UTranslate(centerX, head.getHeight() + thickness() + neckHeight)).draw(path);
|
||||
}
|
||||
|
||||
private double thickness() {
|
||||
return symbolContext.getStroke().getThickness();
|
||||
return fashion.getStroke().getThickness();
|
||||
}
|
||||
|
||||
public double getPreferredWidth() {
|
||||
@ -105,7 +105,7 @@ public class ActorHollow extends AbstractTextBlock implements TextBlock {
|
||||
}
|
||||
|
||||
public double getPreferredHeight() {
|
||||
return headDiam + neckHeight + bodyHeight + thickness() * 2 + symbolContext.getDeltaShadow();
|
||||
return headDiam + neckHeight + bodyHeight + thickness() * 2 + fashion.getDeltaShadow();
|
||||
}
|
||||
|
||||
public XDimension2D calculateDimension(StringBounder stringBounder) {
|
||||
|
@ -57,11 +57,11 @@ public class ActorStickMan extends AbstractTextBlock implements TextBlock {
|
||||
private final double legsY = 15;
|
||||
private final double headDiam = 16;
|
||||
|
||||
private final Fashion symbolContext;
|
||||
private final Fashion fashion;
|
||||
private final boolean actorBusiness;
|
||||
|
||||
ActorStickMan(Fashion symbolContext, boolean actorBusiness) {
|
||||
this.symbolContext = symbolContext;
|
||||
ActorStickMan(Fashion fashion, boolean actorBusiness) {
|
||||
this.fashion = fashion;
|
||||
this.actorBusiness = actorBusiness;
|
||||
}
|
||||
|
||||
@ -81,12 +81,12 @@ public class ActorStickMan extends AbstractTextBlock implements TextBlock {
|
||||
path.lineTo(-legsX, bodyLenght + legsY);
|
||||
path.moveTo(0, bodyLenght);
|
||||
path.lineTo(legsX, bodyLenght + legsY);
|
||||
if (symbolContext.getDeltaShadow() != 0) {
|
||||
head.setDeltaShadow(symbolContext.getDeltaShadow());
|
||||
path.setDeltaShadow(symbolContext.getDeltaShadow());
|
||||
if (fashion.getDeltaShadow() != 0) {
|
||||
head.setDeltaShadow(fashion.getDeltaShadow());
|
||||
path.setDeltaShadow(fashion.getDeltaShadow());
|
||||
}
|
||||
|
||||
ug = symbolContext.apply(ug);
|
||||
ug = fashion.apply(ug);
|
||||
ug.apply(new UTranslate(startX, thickness())).draw(head);
|
||||
if (actorBusiness) {
|
||||
specialBusiness(ug.apply(new UTranslate(startX + headDiam / 2, thickness() + headDiam / 2)));
|
||||
@ -109,7 +109,7 @@ public class ActorStickMan extends AbstractTextBlock implements TextBlock {
|
||||
}
|
||||
|
||||
private double thickness() {
|
||||
return symbolContext.getStroke().getThickness();
|
||||
return fashion.getStroke().getThickness();
|
||||
}
|
||||
|
||||
public double getPreferredWidth() {
|
||||
@ -117,7 +117,7 @@ public class ActorStickMan extends AbstractTextBlock implements TextBlock {
|
||||
}
|
||||
|
||||
public double getPreferredHeight() {
|
||||
return headDiam + bodyLenght + legsY + 2 * thickness() + symbolContext.getDeltaShadow() + 1;
|
||||
return headDiam + bodyLenght + legsY + 2 * thickness() + fashion.getDeltaShadow() + 1;
|
||||
}
|
||||
|
||||
public XDimension2D calculateDimension(StringBounder stringBounder) {
|
||||
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.acearth;
|
||||
package zext.plantuml.com.ctreber.acearth;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.OutputStream;
|
||||
@ -7,33 +7,33 @@ import java.util.Iterator;
|
||||
import java.util.List;
|
||||
import java.util.Random;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.gui.CanvasACearth;
|
||||
import ext.plantuml.com.ctreber.acearth.plugins.Plugin;
|
||||
import ext.plantuml.com.ctreber.acearth.plugins.markers.Marker;
|
||||
import ext.plantuml.com.ctreber.acearth.plugins.markers.PluginMarkers;
|
||||
import ext.plantuml.com.ctreber.acearth.projection.Projection;
|
||||
import ext.plantuml.com.ctreber.acearth.projection.ProjectionCyl;
|
||||
import ext.plantuml.com.ctreber.acearth.projection.ProjectionMerc;
|
||||
import ext.plantuml.com.ctreber.acearth.projection.ProjectionOrtho;
|
||||
import ext.plantuml.com.ctreber.acearth.renderer.Renderer;
|
||||
import ext.plantuml.com.ctreber.acearth.renderer.RowTypeRendererScanBit;
|
||||
import ext.plantuml.com.ctreber.acearth.renderer.RowTypeRendererScanDot;
|
||||
import ext.plantuml.com.ctreber.acearth.scanbit.BitGeneratorMap;
|
||||
import ext.plantuml.com.ctreber.acearth.scanbit.BitGeneratorMapDefault;
|
||||
import ext.plantuml.com.ctreber.acearth.scanbit.BitGeneratorMapOrtho;
|
||||
import ext.plantuml.com.ctreber.acearth.scandot.DotGeneratorLines;
|
||||
import ext.plantuml.com.ctreber.acearth.scandot.DotGeneratorStars;
|
||||
import ext.plantuml.com.ctreber.acearth.scandot.ScanDot;
|
||||
import ext.plantuml.com.ctreber.acearth.scandot.ScanDotGenerator;
|
||||
import ext.plantuml.com.ctreber.acearth.shader.Shader;
|
||||
import ext.plantuml.com.ctreber.acearth.shader.ShaderDefault;
|
||||
import ext.plantuml.com.ctreber.acearth.shader.ShaderFlat;
|
||||
import ext.plantuml.com.ctreber.acearth.shader.ShaderOrtho;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Coordinate;
|
||||
import ext.plantuml.com.ctreber.acearth.util.SunPositionCalculator;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Toolkit;
|
||||
import ext.plantuml.com.ctreber.aclib.sort.CTSort;
|
||||
import ext.plantuml.com.ctreber.aclib.sort.QuickSort;
|
||||
import zext.plantuml.com.ctreber.acearth.gui.CanvasACearth;
|
||||
import zext.plantuml.com.ctreber.acearth.plugins.Plugin;
|
||||
import zext.plantuml.com.ctreber.acearth.plugins.markers.Marker;
|
||||
import zext.plantuml.com.ctreber.acearth.plugins.markers.PluginMarkers;
|
||||
import zext.plantuml.com.ctreber.acearth.projection.Projection;
|
||||
import zext.plantuml.com.ctreber.acearth.projection.ProjectionCyl;
|
||||
import zext.plantuml.com.ctreber.acearth.projection.ProjectionMerc;
|
||||
import zext.plantuml.com.ctreber.acearth.projection.ProjectionOrtho;
|
||||
import zext.plantuml.com.ctreber.acearth.renderer.Renderer;
|
||||
import zext.plantuml.com.ctreber.acearth.renderer.RowTypeRendererScanBit;
|
||||
import zext.plantuml.com.ctreber.acearth.renderer.RowTypeRendererScanDot;
|
||||
import zext.plantuml.com.ctreber.acearth.scanbit.BitGeneratorMap;
|
||||
import zext.plantuml.com.ctreber.acearth.scanbit.BitGeneratorMapDefault;
|
||||
import zext.plantuml.com.ctreber.acearth.scanbit.BitGeneratorMapOrtho;
|
||||
import zext.plantuml.com.ctreber.acearth.scandot.DotGeneratorLines;
|
||||
import zext.plantuml.com.ctreber.acearth.scandot.DotGeneratorStars;
|
||||
import zext.plantuml.com.ctreber.acearth.scandot.ScanDot;
|
||||
import zext.plantuml.com.ctreber.acearth.scandot.ScanDotGenerator;
|
||||
import zext.plantuml.com.ctreber.acearth.shader.Shader;
|
||||
import zext.plantuml.com.ctreber.acearth.shader.ShaderDefault;
|
||||
import zext.plantuml.com.ctreber.acearth.shader.ShaderFlat;
|
||||
import zext.plantuml.com.ctreber.acearth.shader.ShaderOrtho;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Coordinate;
|
||||
import zext.plantuml.com.ctreber.acearth.util.SunPositionCalculator;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Toolkit;
|
||||
import zext.plantuml.com.ctreber.aclib.sort.CTSort;
|
||||
import zext.plantuml.com.ctreber.aclib.sort.QuickSort;
|
||||
|
||||
/**
|
||||
* <h1>AC.earth - XEarth for Java</h1>
|
@ -1,14 +1,14 @@
|
||||
package ext.plantuml.com.ctreber.acearth;
|
||||
package zext.plantuml.com.ctreber.acearth;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import ext.plantuml.com.ctreber.aclib.gui.MOBoolean;
|
||||
import ext.plantuml.com.ctreber.aclib.gui.MODouble;
|
||||
import ext.plantuml.com.ctreber.aclib.gui.MOEnum;
|
||||
import ext.plantuml.com.ctreber.aclib.gui.MOInteger;
|
||||
import ext.plantuml.com.ctreber.aclib.gui.MOString;
|
||||
import ext.plantuml.com.ctreber.aclib.gui.MonitoredObject;
|
||||
import zext.plantuml.com.ctreber.aclib.gui.MOBoolean;
|
||||
import zext.plantuml.com.ctreber.aclib.gui.MODouble;
|
||||
import zext.plantuml.com.ctreber.aclib.gui.MOEnum;
|
||||
import zext.plantuml.com.ctreber.aclib.gui.MOInteger;
|
||||
import zext.plantuml.com.ctreber.aclib.gui.MOString;
|
||||
import zext.plantuml.com.ctreber.aclib.gui.MonitoredObject;
|
||||
|
||||
/**
|
||||
* <p>
|
@ -1,12 +1,12 @@
|
||||
package ext.plantuml.com.ctreber.acearth;
|
||||
package zext.plantuml.com.ctreber.acearth;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.util.Coordinate;
|
||||
import ext.plantuml.com.ctreber.aclib.gui.MOBoolean;
|
||||
import ext.plantuml.com.ctreber.aclib.gui.MODouble;
|
||||
import ext.plantuml.com.ctreber.aclib.gui.MOEnum;
|
||||
import ext.plantuml.com.ctreber.aclib.gui.MOInteger;
|
||||
import ext.plantuml.com.ctreber.aclib.gui.MOString;
|
||||
import ext.plantuml.com.ctreber.aclib.gui.MonitoredObject;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Coordinate;
|
||||
import zext.plantuml.com.ctreber.aclib.gui.MOBoolean;
|
||||
import zext.plantuml.com.ctreber.aclib.gui.MODouble;
|
||||
import zext.plantuml.com.ctreber.aclib.gui.MOEnum;
|
||||
import zext.plantuml.com.ctreber.aclib.gui.MOInteger;
|
||||
import zext.plantuml.com.ctreber.aclib.gui.MOString;
|
||||
import zext.plantuml.com.ctreber.aclib.gui.MonitoredObject;
|
||||
|
||||
/**
|
||||
* <p>
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.acearth;
|
||||
package zext.plantuml.com.ctreber.acearth;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.acearth;
|
||||
package zext.plantuml.com.ctreber.acearth;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
@ -6,8 +6,8 @@ import java.util.Iterator;
|
||||
import java.util.List;
|
||||
import java.util.StringTokenizer;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.util.Point3D;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Polygon;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Point3D;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Polygon;
|
||||
|
||||
/**
|
||||
* The map data file is a big array of short (16-bit) ints, as follows: - it is
|
@ -1,6 +1,6 @@
|
||||
package ext.plantuml.com.ctreber.acearth.gui;
|
||||
package zext.plantuml.com.ctreber.acearth.gui;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.ACearth;
|
||||
import zext.plantuml.com.ctreber.acearth.ACearth;
|
||||
|
||||
/**
|
||||
* <p>
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.acearth.gui;
|
||||
package zext.plantuml.com.ctreber.acearth.gui;
|
||||
|
||||
import java.awt.Color;
|
||||
import java.awt.Graphics2D;
|
||||
@ -6,7 +6,7 @@ import java.awt.image.BufferedImage;
|
||||
import java.io.IOException;
|
||||
import java.io.OutputStream;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.renderer.RenderTarget;
|
||||
import zext.plantuml.com.ctreber.acearth.renderer.RenderTarget;
|
||||
import net.sourceforge.plantuml.security.SImageIO;
|
||||
|
||||
/**
|
@ -13,4 +13,4 @@
|
||||
* @see net.sourceforge.plantuml.acearth
|
||||
*
|
||||
*/
|
||||
package ext.plantuml.com.ctreber.acearth;
|
||||
package zext.plantuml.com.ctreber.acearth;
|
@ -1,11 +1,11 @@
|
||||
package ext.plantuml.com.ctreber.acearth.plugins;
|
||||
package zext.plantuml.com.ctreber.acearth.plugins;
|
||||
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.ACearth;
|
||||
import ext.plantuml.com.ctreber.acearth.gui.PixelCanvas;
|
||||
import ext.plantuml.com.ctreber.acearth.projection.Projection;
|
||||
import zext.plantuml.com.ctreber.acearth.ACearth;
|
||||
import zext.plantuml.com.ctreber.acearth.gui.PixelCanvas;
|
||||
import zext.plantuml.com.ctreber.acearth.projection.Projection;
|
||||
|
||||
/**
|
||||
* <p></p>
|
@ -1,17 +1,17 @@
|
||||
package ext.plantuml.com.ctreber.acearth.plugins.markers;
|
||||
package zext.plantuml.com.ctreber.acearth.plugins.markers;
|
||||
|
||||
import java.awt.Color;
|
||||
import java.awt.Font;
|
||||
import java.awt.Graphics2D;
|
||||
import java.util.List;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.gui.PixelCanvas;
|
||||
import ext.plantuml.com.ctreber.acearth.projection.Projection;
|
||||
import ext.plantuml.com.ctreber.acearth.projection.ProjectionOrtho;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Coordinate;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Point2D;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Point3D;
|
||||
import ext.plantuml.com.ctreber.acearth.util.StringParser;
|
||||
import zext.plantuml.com.ctreber.acearth.gui.PixelCanvas;
|
||||
import zext.plantuml.com.ctreber.acearth.projection.Projection;
|
||||
import zext.plantuml.com.ctreber.acearth.projection.ProjectionOrtho;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Coordinate;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Point2D;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Point3D;
|
||||
import zext.plantuml.com.ctreber.acearth.util.StringParser;
|
||||
|
||||
/**
|
||||
* <p>
|
@ -1,9 +1,9 @@
|
||||
package ext.plantuml.com.ctreber.acearth.plugins.markers;
|
||||
package zext.plantuml.com.ctreber.acearth.plugins.markers;
|
||||
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.plugins.Plugin;
|
||||
import zext.plantuml.com.ctreber.acearth.plugins.Plugin;
|
||||
|
||||
/**
|
||||
* <p>
|
@ -1,9 +1,9 @@
|
||||
package ext.plantuml.com.ctreber.acearth.projection;
|
||||
package zext.plantuml.com.ctreber.acearth.projection;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.util.Coordinate;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Point2D;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Point3D;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Toolkit;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Coordinate;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Point2D;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Point3D;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Toolkit;
|
||||
|
||||
/**
|
||||
* <p>A projection for a globe on a flat surface (must be subclassed).
|
@ -1,7 +1,7 @@
|
||||
package ext.plantuml.com.ctreber.acearth.projection;
|
||||
package zext.plantuml.com.ctreber.acearth.projection;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.util.Coordinate;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Point3D;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Coordinate;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Point3D;
|
||||
|
||||
/**
|
||||
* <p>Cylindrical projection. Show Earth flatly spread out on rectangle.
|
@ -1,7 +1,7 @@
|
||||
package ext.plantuml.com.ctreber.acearth.projection;
|
||||
package zext.plantuml.com.ctreber.acearth.projection;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.util.Coordinate;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Point3D;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Coordinate;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Point3D;
|
||||
|
||||
|
||||
/**
|
@ -1,7 +1,7 @@
|
||||
package ext.plantuml.com.ctreber.acearth.projection;
|
||||
package zext.plantuml.com.ctreber.acearth.projection;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.util.Coordinate;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Point3D;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Coordinate;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Point3D;
|
||||
|
||||
|
||||
/**
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.acearth.renderer;
|
||||
package zext.plantuml.com.ctreber.acearth.renderer;
|
||||
|
||||
import java.awt.Color;
|
||||
|
@ -1,11 +1,11 @@
|
||||
package ext.plantuml.com.ctreber.acearth.renderer;
|
||||
package zext.plantuml.com.ctreber.acearth.renderer;
|
||||
|
||||
import java.awt.Color;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.shader.Shader;
|
||||
import zext.plantuml.com.ctreber.acearth.shader.Shader;
|
||||
|
||||
/**
|
||||
* <p>
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.acearth.renderer;
|
||||
package zext.plantuml.com.ctreber.acearth.renderer;
|
||||
|
||||
/**
|
||||
* <p>Renders a row of pixel types.</p>
|
@ -1,7 +1,7 @@
|
||||
package ext.plantuml.com.ctreber.acearth.renderer;
|
||||
package zext.plantuml.com.ctreber.acearth.renderer;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.scanbit.BitGeneratorMap;
|
||||
import ext.plantuml.com.ctreber.acearth.scanbit.ScanBit;
|
||||
import zext.plantuml.com.ctreber.acearth.scanbit.BitGeneratorMap;
|
||||
import zext.plantuml.com.ctreber.acearth.scanbit.ScanBit;
|
||||
|
||||
/**
|
||||
* <p>Renders a row of ScanBits to pixel types.</p>
|
@ -1,7 +1,7 @@
|
||||
package ext.plantuml.com.ctreber.acearth.renderer;
|
||||
package zext.plantuml.com.ctreber.acearth.renderer;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.scanbit.BitGeneratorMap;
|
||||
import ext.plantuml.com.ctreber.acearth.scandot.ScanDot;
|
||||
import zext.plantuml.com.ctreber.acearth.scanbit.BitGeneratorMap;
|
||||
import zext.plantuml.com.ctreber.acearth.scandot.ScanDot;
|
||||
|
||||
/**
|
||||
* <p>Renders a row of ScanDots to pixel types.</p>
|
@ -1,16 +1,16 @@
|
||||
package ext.plantuml.com.ctreber.acearth.scanbit;
|
||||
package zext.plantuml.com.ctreber.acearth.scanbit;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Comparator;
|
||||
import java.util.List;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.projection.Projection;
|
||||
import ext.plantuml.com.ctreber.acearth.util.EdgeCrossing;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Point2D;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Point3D;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Polygon;
|
||||
import ext.plantuml.com.ctreber.aclib.sort.CTSort;
|
||||
import ext.plantuml.com.ctreber.aclib.sort.QuickSort;
|
||||
import zext.plantuml.com.ctreber.acearth.projection.Projection;
|
||||
import zext.plantuml.com.ctreber.acearth.util.EdgeCrossing;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Point2D;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Point3D;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Polygon;
|
||||
import zext.plantuml.com.ctreber.aclib.sort.CTSort;
|
||||
import zext.plantuml.com.ctreber.aclib.sort.QuickSort;
|
||||
|
||||
/**
|
||||
* <p>
|
@ -1,11 +1,11 @@
|
||||
package ext.plantuml.com.ctreber.acearth.scanbit;
|
||||
package zext.plantuml.com.ctreber.acearth.scanbit;
|
||||
|
||||
import java.util.Comparator;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.projection.Projection;
|
||||
import ext.plantuml.com.ctreber.acearth.util.EdgeCrossing;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Point2D;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Point3D;
|
||||
import zext.plantuml.com.ctreber.acearth.projection.Projection;
|
||||
import zext.plantuml.com.ctreber.acearth.util.EdgeCrossing;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Point2D;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Point3D;
|
||||
|
||||
/**
|
||||
* <p>Map scanner for mercator and cylindrical projections.
|
@ -1,11 +1,11 @@
|
||||
package ext.plantuml.com.ctreber.acearth.scanbit;
|
||||
package zext.plantuml.com.ctreber.acearth.scanbit;
|
||||
|
||||
import java.util.Comparator;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.projection.Projection;
|
||||
import ext.plantuml.com.ctreber.acearth.util.EdgeCrossing;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Point2D;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Point3D;
|
||||
import zext.plantuml.com.ctreber.acearth.projection.Projection;
|
||||
import zext.plantuml.com.ctreber.acearth.util.EdgeCrossing;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Point2D;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Point3D;
|
||||
|
||||
/**
|
||||
* <p>Map scanner for orthographic projection.
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.acearth.scanbit;
|
||||
package zext.plantuml.com.ctreber.acearth.scanbit;
|
||||
|
||||
/**
|
||||
* <p>Instruction to paint points xFrom to xTo on line y.
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.acearth.scanbit;
|
||||
package zext.plantuml.com.ctreber.acearth.scanbit;
|
||||
|
||||
/**
|
||||
* <p>A ScanBitGenerator produces ScanBits.</p>
|
@ -1,10 +1,10 @@
|
||||
package ext.plantuml.com.ctreber.acearth.scanbit;
|
||||
package zext.plantuml.com.ctreber.acearth.scanbit;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import ext.plantuml.com.ctreber.aclib.sort.CTSort;
|
||||
import ext.plantuml.com.ctreber.aclib.sort.QuickSort;
|
||||
import zext.plantuml.com.ctreber.aclib.sort.CTSort;
|
||||
import zext.plantuml.com.ctreber.aclib.sort.QuickSort;
|
||||
|
||||
/**
|
||||
* <p>For each line, the scanbuffer (= a raster divice) records the points hit
|
@ -1,9 +1,9 @@
|
||||
package ext.plantuml.com.ctreber.acearth.scandot;
|
||||
package zext.plantuml.com.ctreber.acearth.scandot;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.projection.Projection;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Coordinate;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Point2D;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Point3D;
|
||||
import zext.plantuml.com.ctreber.acearth.projection.Projection;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Coordinate;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Point2D;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Point3D;
|
||||
|
||||
/**
|
||||
* <p>Generate latitude and longitude grid as dots.
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.acearth.scandot;
|
||||
package zext.plantuml.com.ctreber.acearth.scandot;
|
||||
|
||||
import java.util.Random;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package ext.plantuml.com.ctreber.acearth.scandot;
|
||||
package zext.plantuml.com.ctreber.acearth.scandot;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.util.Point2D;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Point2D;
|
||||
|
||||
/**
|
||||
* <p>A single scandot (opposed to a Polygon).
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.acearth.scandot;
|
||||
package zext.plantuml.com.ctreber.acearth.scandot;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
@ -1,11 +1,11 @@
|
||||
package ext.plantuml.com.ctreber.acearth.shader;
|
||||
package zext.plantuml.com.ctreber.acearth.shader;
|
||||
|
||||
import java.awt.Color;
|
||||
|
||||
import ext.plantuml.com.ctreber.acearth.projection.Projection;
|
||||
import ext.plantuml.com.ctreber.acearth.scanbit.BitGeneratorMap;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Coordinate;
|
||||
import ext.plantuml.com.ctreber.acearth.util.Point3D;
|
||||
import zext.plantuml.com.ctreber.acearth.projection.Projection;
|
||||
import zext.plantuml.com.ctreber.acearth.scanbit.BitGeneratorMap;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Coordinate;
|
||||
import zext.plantuml.com.ctreber.acearth.util.Point3D;
|
||||
|
||||
/**
|
||||
* <p>A shader computes Colors for a row of pixel types, depending
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.acearth.shader;
|
||||
package zext.plantuml.com.ctreber.acearth.shader;
|
||||
|
||||
import java.awt.Color;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.acearth.shader;
|
||||
package zext.plantuml.com.ctreber.acearth.shader;
|
||||
|
||||
import java.awt.Color;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.acearth.shader;
|
||||
package zext.plantuml.com.ctreber.acearth.shader;
|
||||
|
||||
import java.awt.Color;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.acearth.util;
|
||||
package zext.plantuml.com.ctreber.acearth.util;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.Writer;
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.acearth.util;
|
||||
package zext.plantuml.com.ctreber.acearth.util;
|
||||
|
||||
/**
|
||||
* <p>Holds information about a line crossing "the edge of Earth".
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.acearth.util;
|
||||
package zext.plantuml.com.ctreber.acearth.util;
|
||||
|
||||
/**
|
||||
* <p>A point in a 2 axis space.
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.acearth.util;
|
||||
package zext.plantuml.com.ctreber.acearth.util;
|
||||
|
||||
/**
|
||||
* <p>A point in a 2 axis space.
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.acearth.util;
|
||||
package zext.plantuml.com.ctreber.acearth.util;
|
||||
|
||||
|
||||
/**
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.acearth.util;
|
||||
package zext.plantuml.com.ctreber.acearth.util;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.acearth.util;
|
||||
package zext.plantuml.com.ctreber.acearth.util;
|
||||
|
||||
import java.util.Calendar;
|
||||
import java.util.Date;
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.acearth.util;
|
||||
package zext.plantuml.com.ctreber.acearth.util;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.StringTokenizer;
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.aclib.gui;
|
||||
package zext.plantuml.com.ctreber.aclib.gui;
|
||||
|
||||
/**
|
||||
* <p></p>
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.aclib.gui;
|
||||
package zext.plantuml.com.ctreber.aclib.gui;
|
||||
|
||||
/**
|
||||
* <p>Implemented by classes interetested in MonitoredObject values changes.</p>
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.aclib.gui;
|
||||
package zext.plantuml.com.ctreber.aclib.gui;
|
||||
|
||||
/**
|
||||
* <p></p>
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.aclib.gui;
|
||||
package zext.plantuml.com.ctreber.aclib.gui;
|
||||
|
||||
import java.util.HashSet;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.aclib.gui;
|
||||
package zext.plantuml.com.ctreber.aclib.gui;
|
||||
|
||||
/**
|
||||
* <p></p>
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.aclib.gui;
|
||||
package zext.plantuml.com.ctreber.aclib.gui;
|
||||
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.aclib.gui;
|
||||
package zext.plantuml.com.ctreber.aclib.gui;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Iterator;
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.aclib.sort;
|
||||
package zext.plantuml.com.ctreber.aclib.sort;
|
||||
|
||||
import java.util.Comparator;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.aclib.sort;
|
||||
package zext.plantuml.com.ctreber.aclib.sort;
|
||||
|
||||
import java.util.Comparator;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package ext.plantuml.com.ctreber.aclib.sort;
|
||||
package zext.plantuml.com.ctreber.aclib.sort;
|
||||
|
||||
import java.util.Comparator;
|
||||
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing;
|
||||
package zext.plantuml.com.google.zxing;
|
||||
|
||||
import java.util.Hashtable;
|
||||
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing;
|
||||
package zext.plantuml.com.google.zxing;
|
||||
|
||||
/**
|
||||
* Thrown when a barcode was successfully detected and decoded, but
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing;
|
||||
package zext.plantuml.com.google.zxing;
|
||||
|
||||
/**
|
||||
* Encapsulates a type of hint that a caller may pass to a barcode reader to help it
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing;
|
||||
package zext.plantuml.com.google.zxing;
|
||||
|
||||
/**
|
||||
* These are a set of hints that you may pass to Writers to specify their behavior.
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing;
|
||||
package zext.plantuml.com.google.zxing;
|
||||
|
||||
/**
|
||||
* Thrown when a barcode was successfully detected, but some aspect of
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing;
|
||||
package zext.plantuml.com.google.zxing;
|
||||
|
||||
/**
|
||||
* Thrown when a barcode was not found in the image. It might have been
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing;
|
||||
package zext.plantuml.com.google.zxing;
|
||||
|
||||
/**
|
||||
* The general exception class throw when something goes wrong during decoding of a barcode.
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing;
|
||||
package zext.plantuml.com.google.zxing;
|
||||
|
||||
/**
|
||||
* <p>Encapsulates a point of interest in an image containing a barcode. Typically, this
|
4
src/ext/plantuml/com/google/zxing/Writer.java → src/zext/plantuml/com/google/zxing/Writer.java
Executable file → Normal file
4
src/ext/plantuml/com/google/zxing/Writer.java → src/zext/plantuml/com/google/zxing/Writer.java
Executable file → Normal file
@ -14,11 +14,11 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing;
|
||||
package zext.plantuml.com.google.zxing;
|
||||
|
||||
import java.util.Hashtable;
|
||||
|
||||
import ext.plantuml.com.google.zxing.common.BitMatrix;
|
||||
import zext.plantuml.com.google.zxing.common.BitMatrix;
|
||||
|
||||
/**
|
||||
* The base class for all objects which encode/generate a barcode image.
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing;
|
||||
package zext.plantuml.com.google.zxing;
|
||||
|
||||
/**
|
||||
* A base class which covers the range of exceptions which may occur when encoding a barcode using
|
@ -14,11 +14,11 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.client.j2se;
|
||||
package zext.plantuml.com.google.zxing.client.j2se;
|
||||
|
||||
import java.awt.image.BufferedImage;
|
||||
|
||||
import ext.plantuml.com.google.zxing.common.BitMatrix;
|
||||
import zext.plantuml.com.google.zxing.common.BitMatrix;
|
||||
|
||||
/**
|
||||
* Writes a {@link BitMatrix} to {@link BufferedImage},
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.common;
|
||||
package zext.plantuml.com.google.zxing.common;
|
||||
|
||||
/**
|
||||
* <p>A simple, fast array of bits, represented compactly by an array of ints internally.</p>
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.common;
|
||||
package zext.plantuml.com.google.zxing.common;
|
||||
|
||||
/**
|
||||
* <p>Represents a 2D matrix of bits. In function arguments below, and throughout the common
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.common;
|
||||
package zext.plantuml.com.google.zxing.common;
|
||||
|
||||
/**
|
||||
* <p>This provides an easy abstraction to read bits at a time from a sequence of bytes, where the
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.common;
|
||||
package zext.plantuml.com.google.zxing.common;
|
||||
|
||||
import java.util.Hashtable;
|
||||
|
@ -14,11 +14,11 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.common;
|
||||
package zext.plantuml.com.google.zxing.common;
|
||||
|
||||
import java.util.Vector;
|
||||
|
||||
import ext.plantuml.com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
|
||||
import zext.plantuml.com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
|
||||
|
||||
/**
|
||||
* <p>Encapsulates the result of decoding a matrix of bits. This typically
|
@ -14,9 +14,9 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.common;
|
||||
package zext.plantuml.com.google.zxing.common;
|
||||
|
||||
import ext.plantuml.com.google.zxing.ResultPoint;
|
||||
import zext.plantuml.com.google.zxing.ResultPoint;
|
||||
|
||||
/**
|
||||
* <p>Encapsulates the result of detecting a barcode in an image. This includes the raw
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.common;
|
||||
package zext.plantuml.com.google.zxing.common;
|
||||
|
||||
/**
|
||||
* Superclass of classes encapsulating types ECIs, according to "Extended Channel Interpretations"
|
@ -14,11 +14,11 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.common;
|
||||
package zext.plantuml.com.google.zxing.common;
|
||||
|
||||
import java.util.Hashtable;
|
||||
|
||||
import ext.plantuml.com.google.zxing.DecodeHintType;
|
||||
import zext.plantuml.com.google.zxing.DecodeHintType;
|
||||
|
||||
/**
|
||||
* Common string-related functions.
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.common.reedsolomon;
|
||||
package zext.plantuml.com.google.zxing.common.reedsolomon;
|
||||
|
||||
/**
|
||||
* <p>This class contains utility methods for performing mathematical operations over
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.common.reedsolomon;
|
||||
package zext.plantuml.com.google.zxing.common.reedsolomon;
|
||||
|
||||
/**
|
||||
* <p>Represents a polynomial whose coefficients are elements of GF(256).
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.common.reedsolomon;
|
||||
package zext.plantuml.com.google.zxing.common.reedsolomon;
|
||||
|
||||
import java.util.Vector;
|
||||
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.common.reedsolomon;
|
||||
package zext.plantuml.com.google.zxing.common.reedsolomon;
|
||||
|
||||
/**
|
||||
* <p>Thrown when an exception occurs during Reed-Solomon decoding, such as when
|
@ -14,10 +14,10 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.datamatrix.decoder;
|
||||
package zext.plantuml.com.google.zxing.datamatrix.decoder;
|
||||
|
||||
import ext.plantuml.com.google.zxing.FormatException;
|
||||
import ext.plantuml.com.google.zxing.common.BitMatrix;
|
||||
import zext.plantuml.com.google.zxing.FormatException;
|
||||
import zext.plantuml.com.google.zxing.common.BitMatrix;
|
||||
|
||||
/**
|
||||
* @author bbrown@google.com (Brian Brown)
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.datamatrix.decoder;
|
||||
package zext.plantuml.com.google.zxing.datamatrix.decoder;
|
||||
|
||||
/**
|
||||
* <p>Encapsulates a block of data within a Data Matrix Code. Data Matrix Codes may split their data into
|
@ -14,9 +14,9 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.datamatrix.decoder;
|
||||
package zext.plantuml.com.google.zxing.datamatrix.decoder;
|
||||
|
||||
import ext.plantuml.com.google.zxing.FormatException;
|
||||
import zext.plantuml.com.google.zxing.FormatException;
|
||||
|
||||
/**
|
||||
* The Version object encapsulates attributes about a particular
|
@ -13,4 +13,4 @@
|
||||
* @see net.sourceforge.plantuml.flashcode
|
||||
*
|
||||
*/
|
||||
package ext.plantuml.com.google.zxing;
|
||||
package zext.plantuml.com.google.zxing;
|
@ -14,19 +14,19 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.qrcode;
|
||||
package zext.plantuml.com.google.zxing.qrcode;
|
||||
|
||||
import java.util.Hashtable;
|
||||
|
||||
import ext.plantuml.com.google.zxing.BarcodeFormat;
|
||||
import ext.plantuml.com.google.zxing.EncodeHintType;
|
||||
import ext.plantuml.com.google.zxing.Writer;
|
||||
import ext.plantuml.com.google.zxing.WriterException;
|
||||
import ext.plantuml.com.google.zxing.common.BitMatrix;
|
||||
import ext.plantuml.com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
|
||||
import ext.plantuml.com.google.zxing.qrcode.encoder.ByteMatrix;
|
||||
import ext.plantuml.com.google.zxing.qrcode.encoder.Encoder;
|
||||
import ext.plantuml.com.google.zxing.qrcode.encoder.QRCode;
|
||||
import zext.plantuml.com.google.zxing.BarcodeFormat;
|
||||
import zext.plantuml.com.google.zxing.EncodeHintType;
|
||||
import zext.plantuml.com.google.zxing.Writer;
|
||||
import zext.plantuml.com.google.zxing.WriterException;
|
||||
import zext.plantuml.com.google.zxing.common.BitMatrix;
|
||||
import zext.plantuml.com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
|
||||
import zext.plantuml.com.google.zxing.qrcode.encoder.ByteMatrix;
|
||||
import zext.plantuml.com.google.zxing.qrcode.encoder.Encoder;
|
||||
import zext.plantuml.com.google.zxing.qrcode.encoder.QRCode;
|
||||
|
||||
/**
|
||||
* This object renders a QR Code as a BitMatrix 2D array of greyscale values.
|
@ -14,10 +14,10 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.qrcode.decoder;
|
||||
package zext.plantuml.com.google.zxing.qrcode.decoder;
|
||||
|
||||
import ext.plantuml.com.google.zxing.FormatException;
|
||||
import ext.plantuml.com.google.zxing.common.BitMatrix;
|
||||
import zext.plantuml.com.google.zxing.FormatException;
|
||||
import zext.plantuml.com.google.zxing.common.BitMatrix;
|
||||
|
||||
/**
|
||||
* @author Sean Owen
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.qrcode.decoder;
|
||||
package zext.plantuml.com.google.zxing.qrcode.decoder;
|
||||
|
||||
/**
|
||||
* <p>Encapsulates a block of data within a QR Code. QR Codes may split their data into
|
@ -14,9 +14,9 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.qrcode.decoder;
|
||||
package zext.plantuml.com.google.zxing.qrcode.decoder;
|
||||
|
||||
import ext.plantuml.com.google.zxing.common.BitMatrix;
|
||||
import zext.plantuml.com.google.zxing.common.BitMatrix;
|
||||
|
||||
/**
|
||||
* <p>Encapsulates data masks for the data bits in a QR code, per ISO 18004:2006 6.8. Implementations
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.qrcode.decoder;
|
||||
package zext.plantuml.com.google.zxing.qrcode.decoder;
|
||||
|
||||
/**
|
||||
* <p>See ISO 18004:2006, 6.5.1. This enum encapsulates the four error correction levels
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.qrcode.decoder;
|
||||
package zext.plantuml.com.google.zxing.qrcode.decoder;
|
||||
|
||||
/**
|
||||
* <p>Encapsulates a QR Code's format information, including the data mask used and
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.qrcode.decoder;
|
||||
package zext.plantuml.com.google.zxing.qrcode.decoder;
|
||||
|
||||
/**
|
||||
* <p>See ISO 18004:2006, 6.4.1, Tables 2 and 3. This enum encapsulates the various modes in which
|
@ -14,10 +14,10 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.qrcode.decoder;
|
||||
package zext.plantuml.com.google.zxing.qrcode.decoder;
|
||||
|
||||
import ext.plantuml.com.google.zxing.FormatException;
|
||||
import ext.plantuml.com.google.zxing.common.BitMatrix;
|
||||
import zext.plantuml.com.google.zxing.FormatException;
|
||||
import zext.plantuml.com.google.zxing.common.BitMatrix;
|
||||
|
||||
/**
|
||||
* See ISO 18004:2006 Annex D
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.qrcode.encoder;
|
||||
package zext.plantuml.com.google.zxing.qrcode.encoder;
|
||||
|
||||
final class BlockPair {
|
||||
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.qrcode.encoder;
|
||||
package zext.plantuml.com.google.zxing.qrcode.encoder;
|
||||
|
||||
/**
|
||||
* A class which wraps a 2D array of bytes. The default usage is signed. If you want to use it as a
|
@ -14,22 +14,22 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.qrcode.encoder;
|
||||
package zext.plantuml.com.google.zxing.qrcode.encoder;
|
||||
|
||||
import java.io.UnsupportedEncodingException;
|
||||
import java.util.Hashtable;
|
||||
import java.util.Vector;
|
||||
|
||||
import ext.plantuml.com.google.zxing.EncodeHintType;
|
||||
import ext.plantuml.com.google.zxing.WriterException;
|
||||
import ext.plantuml.com.google.zxing.common.BitArray;
|
||||
import ext.plantuml.com.google.zxing.common.CharacterSetECI;
|
||||
import ext.plantuml.com.google.zxing.common.ECI;
|
||||
import ext.plantuml.com.google.zxing.common.reedsolomon.GF256;
|
||||
import ext.plantuml.com.google.zxing.common.reedsolomon.ReedSolomonEncoder;
|
||||
import ext.plantuml.com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
|
||||
import ext.plantuml.com.google.zxing.qrcode.decoder.Mode;
|
||||
import ext.plantuml.com.google.zxing.qrcode.decoder.Version;
|
||||
import zext.plantuml.com.google.zxing.EncodeHintType;
|
||||
import zext.plantuml.com.google.zxing.WriterException;
|
||||
import zext.plantuml.com.google.zxing.common.BitArray;
|
||||
import zext.plantuml.com.google.zxing.common.CharacterSetECI;
|
||||
import zext.plantuml.com.google.zxing.common.ECI;
|
||||
import zext.plantuml.com.google.zxing.common.reedsolomon.GF256;
|
||||
import zext.plantuml.com.google.zxing.common.reedsolomon.ReedSolomonEncoder;
|
||||
import zext.plantuml.com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
|
||||
import zext.plantuml.com.google.zxing.qrcode.decoder.Mode;
|
||||
import zext.plantuml.com.google.zxing.qrcode.decoder.Version;
|
||||
|
||||
/**
|
||||
* @author satorux@google.com (Satoru Takabayashi) - creator
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ext.plantuml.com.google.zxing.qrcode.encoder;
|
||||
package zext.plantuml.com.google.zxing.qrcode.encoder;
|
||||
|
||||
/**
|
||||
* @author satorux@google.com (Satoru Takabayashi) - creator
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user