001package csheets.core.formula.lang; 002 003import csheets.core.Cell; 004import csheets.core.Value; 005import csheets.core.formula.Reference; 006import csheets.core.formula.util.ExpressionVisitor; 007import java.util.SortedSet; 008 009/** 010 * This class is a concrete RelationalOperatior to allow operations with := 011 * @author João Carreira 012 */ 013public class RelationalOperatorImpl extends RelationalOperator implements Reference 014{ 015 016 public RelationalOperatorImpl(Reference reference, RangeReference rangeReference, Reference reference0) { 017 super(); 018 } 019 020 @Override 021 public <T> boolean compare(Comparable<T> left, T right) { 022 throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. 023 } 024 025 @Override 026 public String getIdentifier() { 027 throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. 028 } 029 030 @Override 031 public Value evaluate() { 032 throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. 033 } 034 035 @Override 036 public SortedSet<Cell> getCells() { 037 throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. 038 } 039 040 @Override 041 public int compareTo(Reference reference) { 042 throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. 043 } 044 045 @Override 046 public Object accept(ExpressionVisitor visitor) { 047 throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. 048 } 049}