SameIndividualAtomImpl.java revision 2
/*
* Created on Dec 28, 2004
*/
/**
* @author Evren Sirin
*
*/
super(ind);
}
public SWRLIndividualObject getArgument1() {
}
public SWRLIndividualObject getArgument2() {
}
public int getArgumentCount() {
return 2;
}
if( index == 0 )
return getArgument1();
if( index == 1 )
return getArgument2();
}
if( index > 1 )
if(obj instanceof SWRLIndividualObject) {
if( index == 0 )
else
}
else
throw new IllegalArgumentException("SameIndividualAtom argument should be a SWRLIndivdiualObject");
}
}
}
}
}