All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.docx4j.model.properties.table.BorderRight Maven / Gradle / Ivy

Go to download

docx4j is a library which helps you to work with the Office Open XML file format as used in docx documents, pptx presentations, and xlsx spreadsheets.

There is a newer version: 11.4.11
Show newest version
/*
 *  Copyright 2009, Plutext Pty Ltd.
 *   
 *  This file is part of docx4j.

    docx4j is licensed 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.docx4j.model.properties.table;

import org.docx4j.jaxb.Context;
import org.docx4j.wml.CTBorder;
import org.docx4j.wml.TblBorders;
import org.docx4j.wml.TblPr;
import org.docx4j.wml.TcPrInner;
import org.w3c.dom.css.CSSValue;

public class BorderRight extends AbstractBorder {
	
	private final static String CSS_NAME_BASE = "border-right"; 	
	public final static String FO_NAME  = "TODO"; 
	
	/**
	 * @since 2.7.2
	 */	
	public String getCssName() {
		return CSS_NAME_BASE;
	}
	
	public BorderRight(CTBorder val) {
		super(val, CSS_NAME_BASE);
	}
	
	public BorderRight(CSSValue value) {	
		super(value, CSS_NAME_BASE);
		
		// TODO
//		if (value.getCssText().toLowerCase().equals("bold")) {
//			this.setObject( Context.getWmlObjectFactory().createBooleanDefaultTrue()  );
//		} else {
//			BooleanDefaultTrue bdt = Context.getWmlObjectFactory().createBooleanDefaultTrue();
//			bdt.setVal(Boolean.FALSE);
//		}
	}

	@Override
	public String getCssProperty() {
		return super.getCssProperty();
	}
	
	@Override
	public void set(TblPr tblPr) {
		if (tblPr.getTblBorders()==null) {
			TblBorders tblBorders = Context.getWmlObjectFactory().createTblBorders();
			tblPr.setTblBorders(tblBorders);
		}
		tblPr.getTblBorders().setRight( (CTBorder)this.getObject() );
	}

	public void set(TcPrInner tcPr) {
		if (tcPr.getTcBorders()==null) {
			TcPrInner.TcBorders tcBorders = Context.getWmlObjectFactory().createTcPrInnerTcBorders();
			tcPr.setTcBorders(tcBorders);
		}
		tcPr.getTcBorders().setRight( (CTBorder)this.getObject() );
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy