![JAR search and dependency download from the Maven repository](/logo.png)
com.github.dnbn.submerge.api.subtitle.config.Font Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of submerge-api Show documentation
Show all versions of submerge-api Show documentation
Library to manage SRT and ASS subtitles
The newest version!
package com.github.dnbn.submerge.api.subtitle.config;
import java.io.Serializable;
import com.github.dnbn.submerge.api.constant.FontName;
public class Font implements Serializable {
/**
* Serial
*/
private static final long serialVersionUID = -3711480706383195193L;
/**
* Font name
*/
private String name = FontName.Arial.toString();
/**
* Font size
*/
private int size = 16;
/**
* Font color
*/
private String color = "#fffff9";
/**
* Outline color
*/
private String outlineColor = "#000000";
/**
* Outline width
*/
private int outlineWidth = 2;
// ===================== getter and setter start =====================
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public int getSize() {
return this.size;
}
public void setSize(int size) {
this.size = size;
}
public String getColor() {
return this.color;
}
public void setColor(String color) {
this.color = color;
}
public String getOutlineColor() {
return this.outlineColor;
}
public void setOutlineColor(String outlineColor) {
this.outlineColor = outlineColor;
}
public int getOutlineWidth() {
return this.outlineWidth;
}
public void setOutlineWidth(int outlineWidth) {
this.outlineWidth = outlineWidth;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy