Revision: 7696
Author: victormote
Date: 2006-06-17 14:57:22 -0700 (Sat, 17 Jun 2006)
ViewCVS: http://svn.sourceforge.net/foray/?rev=7696&view=rev
Log Message:
-----------
Whitespace changes only.
Modified Paths:
--------------
trunk/foray/foray-ps/src/java/org/foray/ps/java2d/demo/DemoFrame.java
trunk/foray/foray-ps/src/java/org/foray/ps/java2d/demo/DemoPanel.java
trunk/foray/foray-ps/src/java/org/foray/ps/java2d/demo/Main.java
Modified: trunk/foray/foray-ps/src/java/org/foray/ps/java2d/demo/DemoFrame.java
===================================================================
--- trunk/foray/foray-ps/src/java/org/foray/ps/java2d/demo/DemoFrame.java 2006-06-17 21:48:54 UTC (rev 7695)
+++ trunk/foray/foray-ps/src/java/org/foray/ps/java2d/demo/DemoFrame.java 2006-06-17 21:57:22 UTC (rev 7696)
@@ -1,19 +1,19 @@
/*
* Copyright 2004 The FOray Project.
* http://www.foray.org
- *
+ *
* 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.
- *
+ *
* This work is in part derived from the following work(s), used with the
* permission of the licensor:
* Apache FOP, licensed by the Apache Software Foundation
@@ -21,7 +21,7 @@
*/
/* $Id$ */
-
+
package org.foray.ps.java2d.demo;
@@ -47,12 +47,12 @@
buildGUI();
setSize(500, 400);
}
-
+
private void buildGUI() {
DemoPanel bcpanel = new DemoPanel(this.fileName);
add("Center", bcpanel);
}
-
+
private class WindowHandler extends WindowAdapter {
public void windowClosing(WindowEvent we) {
System.exit(0);
Modified: trunk/foray/foray-ps/src/java/org/foray/ps/java2d/demo/DemoPanel.java
===================================================================
--- trunk/foray/foray-ps/src/java/org/foray/ps/java2d/demo/DemoPanel.java 2006-06-17 21:48:54 UTC (rev 7695)
+++ trunk/foray/foray-ps/src/java/org/foray/ps/java2d/demo/DemoPanel.java 2006-06-17 21:57:22 UTC (rev 7696)
@@ -1,19 +1,19 @@
/*
* Copyright 2004 The FOray Project.
* http://www.foray.org
- *
+ *
* 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.
- *
+ *
* This work is in part derived from the following work(s), used with the
* permission of the licensor:
* Apache FOP, licensed by the Apache Software Foundation
@@ -21,7 +21,7 @@
*/
/* $Id$ */
-
+
package org.foray.ps.java2d.demo;
@@ -79,7 +79,7 @@
RenderingHints.VALUE_ANTIALIAS_ON);
g2d.setRenderingHint(RenderingHints.KEY_FRACTIONALMETRICS,
RenderingHints.VALUE_FRACTIONALMETRICS_ON);
-
+
AffineTransform baktrans = g2d.getTransform();
g2d.translate(rect.getX(), rect.getY());
g2d.scale(1, -1);
@@ -102,7 +102,7 @@
} catch (PSException e) {
System.out.print(e.getMessage());
}
-
+
g2d.setTransform(baktrans);
}
Modified: trunk/foray/foray-ps/src/java/org/foray/ps/java2d/demo/Main.java
===================================================================
--- trunk/foray/foray-ps/src/java/org/foray/ps/java2d/demo/Main.java 2006-06-17 21:48:54 UTC (rev 7695)
+++ trunk/foray/foray-ps/src/java/org/foray/ps/java2d/demo/Main.java 2006-06-17 21:57:22 UTC (rev 7696)
@@ -1,19 +1,19 @@
/*
* Copyright 2004 The FOray Project.
* http://www.foray.org
- *
+ *
* 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.
- *
+ *
* This work is in part derived from the following work(s), used with the
* permission of the licensor:
* Apache FOP, licensed by the Apache Software Foundation
@@ -21,7 +21,7 @@
*/
/* $Id$ */
-
+
package org.foray.ps.java2d.demo;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|