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

nl.dedicon.pipeline.braille.model.Symbol Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package nl.dedicon.pipeline.braille.model;

import java.util.List;

/**
 * A symbol from the symbols list
 * 
 * @author Paul Rambags
 */
public class Symbol {
    
    private String character;
    private String language;
    private List replaces;

    public String getCharacter() {
        return character;
    }

    public void setCharacter(String character) {
        this.character = character;
    }

    public String getLanguage() {
        return language;
    }

    public void setLanguage(String language) {
        this.language = language;
    }

    public List getReplaces() {
        return replaces;
    }

    public void setReplaces(List replaces) {
        this.replaces = replaces;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy