AIMA.Core.Logic.FOL.Parsing.AST.ConnectedSentence.getConnector C# (CSharp) Method

getConnector() public method

public getConnector ( ) : String
return String
        public String getConnector()
        {
            return connector;
        }

Usage Example

Beispiel #1
0
        // END-Sentence
        //

        public override bool Equals(Object o)
        {
            if (this == o)
            {
                return(true);
            }
            if ((o == null) || !(o is ConnectedSentence))
            {
                return(false);
            }
            ConnectedSentence cs = (ConnectedSentence)o;

            return(cs.getConnector().Equals(getConnector()) &&
                   cs.getFirst().Equals(getFirst()) &&
                   cs.getSecond().Equals(getSecond()));
        }
All Usage Examples Of AIMA.Core.Logic.FOL.Parsing.AST.ConnectedSentence::getConnector