I am using the Outbound method from the jetty websocket package.
However the outbound variable name appears in italics in Netbeans. What does it mean? Should I avoid using this method?
This is how it appears in netbeans (I have put the italics in for clarity);
import org.eclipse.jetty.websocket.WebSocket.<i>Outbound</i>;
private <i>Outbound</i> mOutbound;
It means the
Outboundclass is a static inner class, written inside theWebSocketclass. The italics are here just to make this explicit to you. It doesn’t mean you shouldn’t use this class.If Netbeans want to show you that you shouldn’t use a class, method or attribute (for example, deprecated API), it will tell you so by crossing out part of the code.