/*
 * Cite.java
 */

package dblpconverter;

/**
 *
 * @author Gersk
 *
 * Cite is the class that provite to storage the cite of an article, book or inproceedings.
 * An article can have many cites, those will store in a vector of cite object.
 */

public class Cite 
{
    
        public String label = "null";
        public String text = "null";
        
        public Cite(String label, String text) 
        { 
            this.label = label;
            this.text = text;
        }
        
    }
