OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:associatedURI
(Results
1 - 4
of
4
) sorted by null
/external/nist-sip/java/gov/nist/javax/sip/parser/ims/
PAssociatedURIParser.java
66
* @param
associatedURI
content to set
68
public PAssociatedURIParser(String
associatedURI
)
70
super(
associatedURI
);
90
PAssociatedURI
associatedURI
= new PAssociatedURI();
91
associatedURI
.setHeaderName(SIPHeaderNamesIms.P_ASSOCIATED_URI);
93
super.parse(
associatedURI
);
94
associatedURIList.add(
associatedURI
);
102
associatedURI
= new PAssociatedURI();
103
super.parse(
associatedURI
);
104
associatedURIList.add(
associatedURI
);
[
all
...]
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
PAssociatedURI.java
91
* @param
associatedURI
- GenericURI to be set in the address of this header
93
public PAssociatedURI(GenericURI
associatedURI
)
97
this.address.setURI(
associatedURI
);
127
* @param
associatedURI
- GenericURI to be set in the address of this header
130
public void setAssociatedURI(URI
associatedURI
) throws NullPointerException
132
if (
associatedURI
== null)
135
this.address.setURI(
associatedURI
);
PAssociatedURIHeader.java
73
* @param
associatedURI
- GenericURI to be set in the address of this header
76
public void setAssociatedURI(URI
associatedURI
) throws NullPointerException;
84
//public void setAssociatedURI(AddressImpl
associatedURI
);
/external/nist-sip/java/gov/nist/javax/sip/header/
HeaderFactoryImpl.java
[
all
...]
Completed in 410 milliseconds