This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<shape | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
android:shape="line" | |
> | |
<stroke | |
android:color="@color/list_divider" | |
android:width="1dp" | |
/> | |
<size |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void extractEducationDetails(SoapObject education, IEducationDetails details) { | |
details.setYear(education.safeGetProperty("year", "").toString()); | |
details.setSchool(education.safeGetProperty("school", "").toString()); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void extractEducationDetails(SoapObject education, IEducationDetails details) { | |
details.setYear(education.safeGetProperty("year").toString()); | |
details.setSchool(education.safeGetProperty("school").toString()); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void extractEducationDetails(SoapObject education, IEducationDetails details) { | |
details.setYear(education.getProperty("year").toString()); | |
details.setSchool(education.getProperty("school").toString()); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<education> | |
<year>1999</year> | |
<school>Hudsonville High School</school> | |
</education> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foreach the_place (origin crc_staging ao_staging); git push $the_place master; end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def append(object) | |
object << "hello" | |
end | |
a = [ 1 ] # array | |
b = "yo ho ho" # string | |
c = StringIO.new("yo ho ho") # string IO; still responds to the << method | |
d = { "hi" => "there" } # hash; does not respond to << method | |
append a # works |
NewerOlder