📄 grapharc.java
字号:
// file: Data.java//// import java libraries//import java.awt.*;import java.awt.event.*;import javax.swing.*;import javax.swing.border.*;import javax.swing.event.*;import java.util.*;import java.io.*;import java.lang.*;public class GraphArc { // --------------------------------------------------- // // declare class member data // // --------------------------------------------------- // vectors of information parsed from the gui resources file // Vector from = null; Vector to = null; Vector weights = null; Vector epsilon = null; Vector xloc = null; Vector yloc = null; Vector width = null; Vector height = null; // --------------------------------------------------- // // declare class constructors // // --------------------------------------------------- // method: GraphArc // // arguments: none // // returns : none // // default class constructor // public GraphArc() { // initialize the arc information // from = new Vector(100, 50); to = new Vector(100, 50); weights = new Vector(100, 50); epsilon = new Vector(100, 50); xloc = new Vector(100, 50); yloc = new Vector(100, 50); width = new Vector(100, 50); height = new Vector(100, 50); }}// // end of file
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -