blob: 9009b01fbcb0d54d8a186c4d7733a103818f568c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2009 David Green and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* David Green - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.wikitext.parser;
import org.eclipse.mylyn.wikitext.parser.DocumentBuilder.BlockType;
/**
* Attributes that may used when creating blocks of type {@link BlockType#TABLE}.
*
* @author David Green
* @since 3.0
*/
public class TableAttributes extends Attributes {
private String border;
private String align;
private String summary;
private String width;
private String frame;
private String rules;
private String cellspacing;
private String cellpadding;
private String bgcolor;
public String getBorder() {
return border;
}
public void setBorder(String border) {
this.border = border;
}
public String getSummary() {
return summary;
}
public void setSummary(String summary) {
this.summary = summary;
}
public String getWidth() {
return width;
}
public void setWidth(String width) {
this.width = width;
}
public String getFrame() {
return frame;
}
public void setFrame(String frame) {
this.frame = frame;
}
public String getRules() {
return rules;
}
public void setRules(String rules) {
this.rules = rules;
}
public String getCellspacing() {
return cellspacing;
}
public void setCellspacing(String cellspacing) {
this.cellspacing = cellspacing;
}
public String getCellpadding() {
return cellpadding;
}
public void setCellpadding(String cellpadding) {
this.cellpadding = cellpadding;
}
public String getBgcolor() {
return bgcolor;
}
public void setBgcolor(String bgcolor) {
this.bgcolor = bgcolor;
}
/**
* @since 3.0.26
*/
public String getAlign() {
return align;
}
/**
* @since 3.0.26
*/
public void setAlign(String align) {
this.align = align;
}
}