Back to project page android_opengles.
The source code is released under:
MIT License
If you think the Android project android_opengles listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.java_websocket.handshake; /*w ww . j a va 2 s .c o m*/ public class HandshakeImpl1Client extends HandshakedataImpl1 implements ClientHandshakeBuilder { private String resourceDescriptor = "*"; public HandshakeImpl1Client() { } public void setResourceDescriptor( String resourceDescriptor ) throws IllegalArgumentException { if(resourceDescriptor==null) throw new IllegalArgumentException( "http resource descriptor must not be null" ); this.resourceDescriptor = resourceDescriptor; } public String getResourceDescriptor() { return resourceDescriptor; } }