⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 problembean.java

📁 struts框架的jsf组件的核心实用例子集合
💻 JAVA
字号:
package com.corejsf;import java.util.ArrayList;public class ProblemBean {   private ArrayList sequence;    private int solution;      public ProblemBean() {}   public ProblemBean(int[] values, int solution) {      sequence = new ArrayList();      for (int i = 0; i < values.length; i++)         sequence.add(new Integer(values[i]));      this.solution = solution;   }   // PROPERTY: sequence   public ArrayList getSequence() { return sequence; }   public void setSequence(ArrayList newValue) { sequence = newValue; }   // PROPERTY: solution   public int getSolution() { return solution; }   public void setSolution(int newValue) { solution = newValue; }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -