Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
liblinphone
Commits
d4e70fe0
Commit
d4e70fe0
authored
14 years ago
by
Simon Morlat
Browse files
Options
Download
Plain Diff
Merge branch 'master' of belledonne-communications.com:linphone-private
parents
47322043
c251f144
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
java/org/linphone/core/CallDirection.java
+32
-0
java/org/linphone/core/CallDirection.java
with
32 additions
and
0 deletions
java/org/linphone/core/CallDirection.java
0 → 100644
+
32
−
0
View file @
d4e70fe0
/*
CallDirection.java
Copyright (C) 2010 Belledonne Communications, Grenoble, France
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
package
org.linphone.core
;
public
class
CallDirection
{
public
static
CallDirection
Outgoing
=
new
CallDirection
(
"CallOutgoing"
);
public
static
CallDirection
Incoming
=
new
CallDirection
(
"Callincoming"
);
private
String
mStringValue
;
private
CallDirection
(
String
aStringValue
)
{
mStringValue
=
aStringValue
;
}
public
String
toString
()
{
return
mStringValue
;
}
}
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets