📄 pdfcollectionschema.java
字号:
package com.lowagie.text.pdf.collection;
import com.lowagie.text.pdf.PdfDictionary;
import com.lowagie.text.pdf.PdfName;
public class PdfCollectionSchema extends PdfDictionary {
/**
* Creates a Collection Schema dictionary.
*/
public PdfCollectionSchema() {
super(PdfName.COLLECTIONSCHEMA);
}
/**
* Adds a Collection field to the Schema.
* @param name the name of the collection field
* @param field a Collection Field
*/
public void addField(String name, PdfCollectionField field) {
put(new PdfName(name), field);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -