I am writing an interface for the logic gates. I have the following code:
Then for the and gate I coded:
public class And
{
public boolean ope(
{
assert();
}
}
Is there any way that I can change this to avoid assert and remove the ellipsis?