mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-21 13:08:08 +00:00
javadoc fixes
This commit is contained in:
parent
249217a856
commit
9f14b4e9dd
4 changed files with 28 additions and 23 deletions
|
|
@ -21,7 +21,7 @@ package org.linphone.core;
|
|||
import java.util.Vector;
|
||||
|
||||
/**
|
||||
* Object representing a Call. calls are created using {@link LinphoneCore#invite(LinphoneAddress)} or passed to the application by listener {@link LinphoneCoreListener#callState(LinphoneCore, LinphoneCall, State, String)}
|
||||
* Object representing a call. Calls are created using {@link LinphoneCore#invite(LinphoneAddress)} or passed to the application by listener {@link LinphoneCoreListener#callState}
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
|||
|
|
@ -373,7 +373,7 @@ public interface LinphoneCore {
|
|||
* Accept an incoming call.
|
||||
*
|
||||
* Basically the application is notified of incoming calls within the
|
||||
* {@link LinphoneCoreListener#inviteReceived(LinphoneCore, String)} listener.
|
||||
* {@link LinphoneCoreListener#callState} listener method.
|
||||
* The application can later respond positively to the call using
|
||||
* this method.
|
||||
* @throws LinphoneCoreException
|
||||
|
|
@ -384,7 +384,7 @@ public interface LinphoneCore {
|
|||
* Accept an incoming call.
|
||||
*
|
||||
* Basically the application is notified of incoming calls within the
|
||||
* {@link LinphoneCoreListener#inviteReceived(LinphoneCore, String)} listener.
|
||||
* {@link LinphoneCoreListener#callState} listener method.
|
||||
* The application can later respond positively to the call using
|
||||
* this method.
|
||||
* @throws LinphoneCoreException
|
||||
|
|
@ -395,7 +395,7 @@ public interface LinphoneCore {
|
|||
* Accept call modifications initiated by other end.
|
||||
*
|
||||
* Basically the application is notified of incoming calls within the
|
||||
* {@link LinphoneCoreListener#inviteReceived(LinphoneCore, String)} listener.
|
||||
* {@link LinphoneCoreListener#callState} listener method.
|
||||
* The application can later respond positively to the call using
|
||||
* this method.
|
||||
* @throws LinphoneCoreException
|
||||
|
|
@ -407,7 +407,7 @@ public interface LinphoneCore {
|
|||
* Prevent LinphoneCore from performing an automatic answer
|
||||
*
|
||||
* Basically the application is notified of incoming calls within the
|
||||
* {@link LinphoneCoreListener#inviteReceived(LinphoneCore, String)} listener.
|
||||
* {@link LinphoneCoreListener#callState} listener method.
|
||||
* The application can later respond positively to the call using
|
||||
* this method.
|
||||
* @throws LinphoneCoreException
|
||||
|
|
|
|||
|
|
@ -24,27 +24,10 @@ package org.linphone.core;
|
|||
*This interface holds all callbacks that the application should implement. None is mandatory.
|
||||
*/
|
||||
public interface LinphoneCoreListener {
|
||||
|
||||
/**< Notifies the application that it should show up
|
||||
* @return */
|
||||
void show(LinphoneCore lc);
|
||||
|
||||
/**< Ask the application some authentication information
|
||||
* @return */
|
||||
void authInfoRequested(LinphoneCore lc,String realm,String username);
|
||||
|
||||
/**< Callback that notifies various events with human readable text.
|
||||
* @return */
|
||||
void displayStatus(LinphoneCore lc,String message);
|
||||
|
||||
/**< Callback to display a message to the user
|
||||
* @return */
|
||||
void displayMessage(LinphoneCore lc,String message);
|
||||
|
||||
/** Callback to display a warning to the user
|
||||
* @return */
|
||||
void displayWarning(LinphoneCore lc,String message);
|
||||
|
||||
/** General State notification
|
||||
* @param state LinphoneCore.State
|
||||
* @return
|
||||
|
|
@ -121,5 +104,22 @@ public interface LinphoneCoreListener {
|
|||
*
|
||||
*/
|
||||
void notifyReceived(LinphoneCore lc, LinphoneCall call, LinphoneAddress from, byte[] event);
|
||||
|
||||
|
||||
/**< @Deprecated Notifies the application that it should show up
|
||||
* @return */
|
||||
void show(LinphoneCore lc);
|
||||
/**< @Deprecated Callback that notifies various events with human readable text.
|
||||
* @return */
|
||||
void displayStatus(LinphoneCore lc,String message);
|
||||
|
||||
/**< @Deprecated Callback to display a message to the user
|
||||
* @return */
|
||||
void displayMessage(LinphoneCore lc,String message);
|
||||
|
||||
/** @Deprecated Callback to display a warning to the user
|
||||
* @return */
|
||||
void displayWarning(LinphoneCore lc,String message);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -159,7 +159,12 @@ Any subsequente modifications to {@link org.linphone.core.LinphoneFriend} must b
|
|||
my_friend.enableSubscribes(true); /*disable subscription for this friend*/
|
||||
my_friend.done(); /*commit changes triggering an UNSUBSCRIBE message*/
|
||||
</code>
|
||||
</pre>
|
||||
</pre> Do not display status messages
|
||||
-J<flag> Pass <flag> directly to the runtime system
|
||||
|
||||
Provided by Standard doclet:
|
||||
-d <directory> Destination directory for output files
|
||||
-use
|
||||
|
||||
<b> Publishing presence status </b>
|
||||
<br>Local presence status can be changed using function {@link org.linphone.core.LinphoneCore#setPresenceInfo }.New status is propagated to all friends {@link org.linphone.core.LinphoneCore#addFriend(LinphoneFriend lf) previously added } to LinphoneCore.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue