📄 data.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 Data { // --------------------------------------------------- // // declare class member data // // --------------------------------------------------- // vectors of information parsed from the gui resources file // Vector association = null; Vector name = null; Vector type = null; Vector values = null; // --------------------------------------------------- // // declare class constructors // // --------------------------------------------------- // method: Data // // arguments: none // // returns : none // // default class constructor // public Data() { // initialize the data containers // association = new Vector(100, 50); name = new Vector(100, 50); type = new Vector(100, 50); values = new Vector(100, 50); }}// // end of file
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -