]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/pdf/PDFExportPlan.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / pdf / PDFExportPlan.java
index 430fa0e66bb6af4268b0825e6e9312caabed5c54..88312f67fe27ba54c1ce539e727af99f31811093 100644 (file)
@@ -1,73 +1,73 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.modeling.ui.pdf;\r
-\r
-import java.io.File;\r
-import java.util.ArrayList;\r
-import java.util.Collection;\r
-import java.util.HashSet;\r
-import java.util.List;\r
-import java.util.Set;\r
-\r
-import org.simantics.db.common.NamedResource;\r
-import org.simantics.db.management.ISessionContext;\r
-import org.simantics.modeling.requests.CollectionResult;\r
-import org.simantics.modeling.requests.Node;\r
-import org.simantics.project.IProject;\r
-\r
-public class PDFExportPlan {\r
-\r
-    // Input\r
-    public ISessionContext           sessionContext;\r
-    public IProject                  project;\r
-    public List<NamedResource>       selectableModels = new ArrayList<NamedResource>();\r
-    public NamedResource             selection;\r
-    public Collection<String>        recentLocations;\r
-\r
-    // Temporary data\r
-    public CollectionResult          nodes           = new CollectionResult();\r
-    public Set<Node>                 selectedNodeSet = new HashSet<Node>();\r
-\r
-    // Output\r
-    //NamedResource             model;\r
-    public File                      exportLocation;\r
-    public Collection<Node>          selectedNodes;\r
-\r
-    // I/O\r
-\r
-    /**\r
-     * <code>false</code> to print content as is regardless of whether it goes\r
-     * outside printed page boundaries. <code>true</code> to scale the content\r
-     * so that it fills the printed page size and the specified margins. If the\r
-     * content goes over page boundaries, it is shrunk and if it doesn't fill\r
-     * the page boundaries, it is scaled up uniformly to fill them either\r
-     * horizontally or vertically.\r
-     */\r
-    public boolean                   fitContentToPageMargins    = false;\r
-\r
-    /**\r
-     * <code>true</code> to attach TG of the diagram and the model.\r
-     */\r
-    public boolean attachTG = false;\r
-\r
-    /**\r
-     * <code>true</code> to attach Wiki page.\r
-     */\r
-    public boolean attachWiki = false;\r
-    \r
-    \r
-    public PDFExportPlan(ISessionContext sessionContext, Collection<String> recentLocations) {\r
-        this.sessionContext = sessionContext;\r
-        this.recentLocations = recentLocations;\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * 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:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.modeling.ui.pdf;
+
+import java.io.File;
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Set;
+
+import org.simantics.db.common.NamedResource;
+import org.simantics.db.management.ISessionContext;
+import org.simantics.modeling.requests.CollectionResult;
+import org.simantics.modeling.requests.Node;
+import org.simantics.project.IProject;
+
+public class PDFExportPlan {
+
+    // Input
+    public ISessionContext           sessionContext;
+    public IProject                  project;
+    public List<NamedResource>       selectableModels = new ArrayList<NamedResource>();
+    public NamedResource             selection;
+    public Collection<String>        recentLocations;
+
+    // Temporary data
+    public CollectionResult          nodes           = new CollectionResult();
+    public Set<Node>                 selectedNodeSet = new HashSet<Node>();
+
+    // Output
+    //NamedResource             model;
+    public File                      exportLocation;
+    public Collection<Node>          selectedNodes;
+
+    // I/O
+
+    /**
+     * <code>false</code> to print content as is regardless of whether it goes
+     * outside printed page boundaries. <code>true</code> to scale the content
+     * so that it fills the printed page size and the specified margins. If the
+     * content goes over page boundaries, it is shrunk and if it doesn't fill
+     * the page boundaries, it is scaled up uniformly to fill them either
+     * horizontally or vertically.
+     */
+    public boolean                   fitContentToPageMargins    = false;
+
+    /**
+     * <code>true</code> to attach TG of the diagram and the model.
+     */
+    public boolean attachTG = false;
+
+    /**
+     * <code>true</code> to attach Wiki page.
+     */
+    public boolean attachWiki = false;
+    
+    
+    public PDFExportPlan(ISessionContext sessionContext, Collection<String> recentLocations) {
+        this.sessionContext = sessionContext;
+        this.recentLocations = recentLocations;
+    }
+
+}