帆软报表设计器源代码。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
290 B

package com.fr.design.layout;
import java.awt.GridLayout;
public class FRGridLayout extends GridLayout {
private static final long serialVersionUID = 1L;
protected FRGridLayout(int n){
super(0, n, 0, 8);
}
protected FRGridLayout(int n, int h, int v) {
super(0, n, h, v);
}
}