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

📄 textprop.java

📁 java 读写word excel ppt
💻 JAVA
字号:
/* ====================================================================   Licensed to the Apache Software Foundation (ASF) under one or more   contributor license agreements.  See the NOTICE file distributed with   this work for additional information regarding copyright ownership.   The ASF licenses this file to You under the Apache License, Version 2.0   (the "License"); you may not use this file except in compliance with   the License.  You may obtain a copy of the License at       http://www.apache.org/licenses/LICENSE-2.0   Unless required by applicable law or agreed to in writing, software   distributed under the License is distributed on an "AS IS" BASIS,   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   See the License for the specific language governing permissions and   limitations under the License.==================================================================== */package org.apache.poi.hslf.model.textproperties;/**  * Definition of a property of some text, or its paragraph. Defines  * how to find out if it's present (via the mask on the paragraph or  * character "contains" header field), how long the value of it is,  * and how to get and set the value. *  * As the exact form of these (such as mask value, size of data *  block etc) is different for StyleTextProps and *  TxMasterTextProps, the definitions of the standard *  TextProps is stored in the different record classes  */public class TextProp implements Cloneable {	protected int sizeOfDataBlock; // Number of bytes the data part uses	protected String propName;	protected int dataValue;	protected int maskInHeader;	/** 	 * Generate the definition of a given type of text property.	 */	public TextProp(int sizeOfDataBlock, int maskInHeader, String propName) {		this.sizeOfDataBlock = sizeOfDataBlock;		this.maskInHeader = maskInHeader;		this.propName = propName;		this.dataValue = 0;	}	/**	 * Name of the text property	 */	public String getName() { return propName; }	/**	 * Size of the data section of the text property (2 or 4 bytes)	 */	public int getSize() { return sizeOfDataBlock; }	/**	 * Mask in the paragraph or character "contains" header field	 *  that indicates that this text property is present.	 */	public int getMask() { return maskInHeader; }	/**	 * Get the mask that's used at write time. Only differs from	 *  the result of getMask() for the mask based properties 	 */	public int getWriteMask() { return getMask(); }	/**	 * Fetch the value of the text property (meaning is specific to	 *  each different kind of text property)	 */	public int getValue() { return dataValue; }	/**	 * Set the value of the text property.	 */	public void setValue(int val) { dataValue = val; }	/**	 * Clone, eg when you want to actually make use of one of these.	 */	public Object clone(){		try {			return super.clone();		} catch(CloneNotSupportedException e) {			throw new InternalError(e.getMessage());		}	}}

⌨️ 快捷键说明

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