<?xml version="1.0" encoding="ISO-8859-1"?>
<fruitlist xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="fruits.xsd" imagepath="e:\JavaTutorial\info">
  <fruit>
    <id>1</id>
    <name>Apple</name>
    <color>red</color>
    <color>yellow</color>
    <color>green</color>
    <image>apple.PNG</image>
    <calories>75</calories>
  </fruit>
    <fruit>
    <id>2</id>
    <name>Orange</name>
    <color>orange</color>
    <image>orange.PNG</image>
    <calories>60</calories>
  </fruit>
    <fruit>
    <id>3</id>
    <name>Mango</name>
    <color>yellow</color>
    <color>green</color>
    <image>noimage.PNG</image>
    <calories>120</calories>
  </fruit>
    <fruit>
    <id>4</id>
    <name>Banana</name>
    <color>yellow</color>
    <color>green</color>
    <image>banana.PNG</image>
    <calories>100</calories>
  </fruit>
    <fruit>
    <id>5</id>
    <name>Guava</name>
    <color>yellow</color>
    <image>noimage.PNG</image>
    <calories>90</calories>
  </fruit>
    <fruit>
    <id>6</id>
    <name>Water Melon</name>
    <color>green</color>
    <image>watermelon.PNG</image>
    <calories>50</calories>
  </fruit>
</fruitlist>
