Skip to content

Instantly share code, notes, and snippets.

View fletcherm's full-sized avatar

Matt Fletcher fletcherm

View GitHub Profile
<?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
public void extractEducationDetails(SoapObject education, IEducationDetails details) {
details.setYear(education.safeGetProperty("year", "").toString());
details.setSchool(education.safeGetProperty("school", "").toString());
}
public void extractEducationDetails(SoapObject education, IEducationDetails details) {
details.setYear(education.safeGetProperty("year").toString());
details.setSchool(education.safeGetProperty("school").toString());
}
public void extractEducationDetails(SoapObject education, IEducationDetails details) {
details.setYear(education.getProperty("year").toString());
details.setSchool(education.getProperty("school").toString());
}
<education>
<year>1999</year>
<school>Hudsonville High School</school>
</education>
foreach the_place (origin crc_staging ao_staging); git push $the_place master; end
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