<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://www.jexp.ru/index.php?action=history&amp;feed=atom&amp;title=Java_by_API%2Forg.eclipse.swt.widgets%2FTableColumn</id>
		<title>Java by API/org.eclipse.swt.widgets/TableColumn - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://www.jexp.ru/index.php?action=history&amp;feed=atom&amp;title=Java_by_API%2Forg.eclipse.swt.widgets%2FTableColumn"/>
		<link rel="alternate" type="text/html" href="http://www.jexp.ru/index.php?title=Java_by_API/org.eclipse.swt.widgets/TableColumn&amp;action=history"/>
		<updated>2026-04-19T07:57:06Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://www.jexp.ru/index.php?title=Java_by_API/org.eclipse.swt.widgets/TableColumn&amp;diff=374&amp;oldid=prev</id>
		<title> в 17:43, 31 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://www.jexp.ru/index.php?title=Java_by_API/org.eclipse.swt.widgets/TableColumn&amp;diff=374&amp;oldid=prev"/>
				<updated>2010-05-31T17:43:48Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 17:43, 31 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
			</entry>

	<entry>
		<id>http://www.jexp.ru/index.php?title=Java_by_API/org.eclipse.swt.widgets/TableColumn&amp;diff=375&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://www.jexp.ru/index.php?title=Java_by_API/org.eclipse.swt.widgets/TableColumn&amp;diff=375&amp;oldid=prev"/>
				<updated>2010-05-31T14:16:25Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== new TableColumn(Table table, int style) ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
import org.eclipse.swt.SWT;&lt;br /&gt;
import org.eclipse.swt.layout.FillLayout;&lt;br /&gt;
import org.eclipse.swt.widgets.Display;&lt;br /&gt;
import org.eclipse.swt.widgets.Shell;&lt;br /&gt;
import org.eclipse.swt.widgets.Table;&lt;br /&gt;
import org.eclipse.swt.widgets.TableColumn;&lt;br /&gt;
import org.eclipse.swt.widgets.TableItem;&lt;br /&gt;
public class MainClass {&lt;br /&gt;
  public static void main(String[] a) {&lt;br /&gt;
    final Display d = new Display();&lt;br /&gt;
    final Shell s = new Shell(d);&lt;br /&gt;
    s.setSize(250, 200);&lt;br /&gt;
    s.setText(&amp;quot;A Table Shell Example&amp;quot;);&lt;br /&gt;
    s.setLayout(new FillLayout());&lt;br /&gt;
    Table t = new Table(s, SWT.BORDER);&lt;br /&gt;
    TableColumn tc1 = new TableColumn(t, SWT.CENTER);&lt;br /&gt;
    TableColumn tc2 = new TableColumn(t, SWT.CENTER);&lt;br /&gt;
    TableColumn tc3 = new TableColumn(t, SWT.CENTER);&lt;br /&gt;
    tc1.setText(&amp;quot;First Name&amp;quot;);&lt;br /&gt;
    tc2.setText(&amp;quot;Last Name&amp;quot;);&lt;br /&gt;
    tc3.setText(&amp;quot;Address&amp;quot;);&lt;br /&gt;
    tc1.setWidth(70);&lt;br /&gt;
    tc2.setWidth(70);&lt;br /&gt;
    tc3.setWidth(80);&lt;br /&gt;
    t.setHeaderVisible(true);&lt;br /&gt;
    TableItem item1 = new TableItem(t, SWT.NONE);&lt;br /&gt;
    item1.setText(new String[] { &amp;quot;A&amp;quot;, &amp;quot;B&amp;quot;, &amp;quot;Address 1&amp;quot; });&lt;br /&gt;
    TableItem item2 = new TableItem(t, SWT.NONE);&lt;br /&gt;
    item2.setText(new String[] { &amp;quot;C&amp;quot;, &amp;quot;D&amp;quot;, &amp;quot;Address 2&amp;quot; });&lt;br /&gt;
    TableItem item3 = new TableItem(t, SWT.NONE);&lt;br /&gt;
    item3.setText(new String[] { &amp;quot;E&amp;quot;, &amp;quot;F&amp;quot;, &amp;quot;Address 3&amp;quot; });&lt;br /&gt;
    s.open();&lt;br /&gt;
    while (!s.isDisposed()) {&lt;br /&gt;
      if (!d.readAndDispatch())&lt;br /&gt;
        d.sleep();&lt;br /&gt;
    }&lt;br /&gt;
    d.dispose();&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- end source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== TableColumn: addSelectionListener(SelectionListener lis) ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
import java.util.ArrayList;&lt;br /&gt;
import java.util.Collections;&lt;br /&gt;
import java.util.ruparator;&lt;br /&gt;
import java.util.Iterator;&lt;br /&gt;
import org.eclipse.swt.SWT;&lt;br /&gt;
import org.eclipse.swt.events.SelectionAdapter;&lt;br /&gt;
import org.eclipse.swt.events.SelectionEvent;&lt;br /&gt;
import org.eclipse.swt.layout.FillLayout;&lt;br /&gt;
import org.eclipse.swt.widgets.Display;&lt;br /&gt;
import org.eclipse.swt.widgets.Shell;&lt;br /&gt;
import org.eclipse.swt.widgets.Table;&lt;br /&gt;
import org.eclipse.swt.widgets.TableColumn;&lt;br /&gt;
import org.eclipse.swt.widgets.TableItem;&lt;br /&gt;
public class MainClass {&lt;br /&gt;
  private StudentComparator comparator = new StudentComparator();&lt;br /&gt;
  private java.util.List students = new ArrayList();&lt;br /&gt;
  public MainClass() {&lt;br /&gt;
    comparator.setColumn(StudentComparator.FIRST_NAME);&lt;br /&gt;
    comparator.setDirection(StudentComparator.ASCENDING);&lt;br /&gt;
    &lt;br /&gt;
    students.add(new Student(&amp;quot;A&amp;quot;, &amp;quot;H&amp;quot;, 0.73f));&lt;br /&gt;
    students.add(new Student(&amp;quot;B&amp;quot;, &amp;quot;G&amp;quot;, 0.65f));&lt;br /&gt;
    students.add(new Student(&amp;quot;C&amp;quot;, &amp;quot;F&amp;quot;, 0.11f));&lt;br /&gt;
    students.add(new Student(&amp;quot;D&amp;quot;, &amp;quot;E&amp;quot;, 0.69f));&lt;br /&gt;
    students.add(new Student(&amp;quot;E&amp;quot;, &amp;quot;D&amp;quot;, 0.76f));&lt;br /&gt;
    students.add(new Student(&amp;quot;F&amp;quot;, &amp;quot;C&amp;quot;, 0.99f));&lt;br /&gt;
    students.add(new Student(&amp;quot;G&amp;quot;, &amp;quot;B&amp;quot;, 0.55f));&lt;br /&gt;
    students.add(new Student(&amp;quot;H&amp;quot;, &amp;quot;A&amp;quot;, 0.95f));&lt;br /&gt;
  }&lt;br /&gt;
  public void run() {&lt;br /&gt;
    Display display = new Display();&lt;br /&gt;
    Shell shell = new Shell(display);&lt;br /&gt;
    shell.setText(&amp;quot;Player Table&amp;quot;);&lt;br /&gt;
    shell.setLayout(new FillLayout());&lt;br /&gt;
    final Table table = new Table(shell, SWT.NONE);&lt;br /&gt;
    table.setHeaderVisible(true);&lt;br /&gt;
    table.setLinesVisible(true);&lt;br /&gt;
    TableColumn[] columns = new TableColumn[3];&lt;br /&gt;
    columns[0] = new TableColumn(table, SWT.NONE);&lt;br /&gt;
    columns[0].setText(&amp;quot;First Name&amp;quot;);&lt;br /&gt;
    columns[0].addSelectionListener(new SelectionAdapter() {&lt;br /&gt;
      public void widgetSelected(SelectionEvent event) {&lt;br /&gt;
        comparator.setColumn(StudentComparator.FIRST_NAME);&lt;br /&gt;
        comparator.reverseDirection();&lt;br /&gt;
        fillTable(table);&lt;br /&gt;
      }&lt;br /&gt;
    });&lt;br /&gt;
    columns[1] = new TableColumn(table, SWT.NONE);&lt;br /&gt;
    columns[1].setText(&amp;quot;Last Name&amp;quot;);&lt;br /&gt;
    columns[1].addSelectionListener(new SelectionAdapter() {&lt;br /&gt;
      public void widgetSelected(SelectionEvent event) {&lt;br /&gt;
        comparator.setColumn(StudentComparator.LAST_NAME);&lt;br /&gt;
        comparator.reverseDirection();&lt;br /&gt;
        fillTable(table);&lt;br /&gt;
      }&lt;br /&gt;
    });&lt;br /&gt;
    columns[2] = new TableColumn(table, SWT.RIGHT);&lt;br /&gt;
    columns[2].setText(&amp;quot;Average&amp;quot;);&lt;br /&gt;
    columns[2].addSelectionListener(new SelectionAdapter() {&lt;br /&gt;
      public void widgetSelected(SelectionEvent event) {&lt;br /&gt;
        comparator.setColumn(StudentComparator.AVERAGE);&lt;br /&gt;
        comparator.reverseDirection();&lt;br /&gt;
        fillTable(table);&lt;br /&gt;
      }&lt;br /&gt;
    });&lt;br /&gt;
    fillTable(table);&lt;br /&gt;
    for (int i = 0, n = columns.length; i &amp;lt; n; i++) {&lt;br /&gt;
      columns[i].pack();&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    shell.pack();&lt;br /&gt;
    shell.open();&lt;br /&gt;
    while (!shell.isDisposed()) {&lt;br /&gt;
      if (!display.readAndDispatch()) {&lt;br /&gt;
        display.sleep();&lt;br /&gt;
      }&lt;br /&gt;
    }&lt;br /&gt;
    display.dispose();&lt;br /&gt;
  }&lt;br /&gt;
  private void fillTable(Table table) {&lt;br /&gt;
    // Turn off drawing to avoid flicker&lt;br /&gt;
    table.setRedraw(false);&lt;br /&gt;
    // We remove all the table entries, sort our&lt;br /&gt;
    // rows, then add the entries&lt;br /&gt;
    table.removeAll();&lt;br /&gt;
    Collections.sort(students, comparator);&lt;br /&gt;
    for (Iterator itr = students.iterator(); itr.hasNext();) {&lt;br /&gt;
      Student student = (Student) itr.next();&lt;br /&gt;
      TableItem item = new TableItem(table, SWT.NONE);&lt;br /&gt;
      int c = 0;&lt;br /&gt;
      item.setText(c++, student.getFirstName());&lt;br /&gt;
      item.setText(c++, student.getLastName());&lt;br /&gt;
      item.setText(c++, String.valueOf(student.getAverage()));&lt;br /&gt;
    }&lt;br /&gt;
    // Turn drawing back on&lt;br /&gt;
    table.setRedraw(true);&lt;br /&gt;
  }&lt;br /&gt;
  public static void main(String[] args) {&lt;br /&gt;
    new MainClass().run();&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
class StudentComparator implements Comparator {&lt;br /&gt;
  /** Constant for First Name column */&lt;br /&gt;
  public static final int FIRST_NAME = 0;&lt;br /&gt;
  /** Constant for Last Name column */&lt;br /&gt;
  public static final int LAST_NAME = 1;&lt;br /&gt;
  /** Constant for Batting Average column */&lt;br /&gt;
  public static final int AVERAGE = 2;&lt;br /&gt;
  /** Constant for ascending */&lt;br /&gt;
  public static final int ASCENDING = 0;&lt;br /&gt;
  /** Constant for descending */&lt;br /&gt;
  public static final int DESCENDING = 1;&lt;br /&gt;
  private int column;&lt;br /&gt;
  private int direction;&lt;br /&gt;
  public int compare(Object obj1, Object obj2) {&lt;br /&gt;
    int rc = 0;&lt;br /&gt;
    Student p1 = (Student) obj1;&lt;br /&gt;
    Student p2 = (Student) obj2;&lt;br /&gt;
    switch (column) {&lt;br /&gt;
    case FIRST_NAME:&lt;br /&gt;
      rc = p1.getFirstName().rupareTo(p2.getFirstName());&lt;br /&gt;
      break;&lt;br /&gt;
    case LAST_NAME:&lt;br /&gt;
      rc = p1.getLastName().rupareTo(p2.getLastName());&lt;br /&gt;
      break;&lt;br /&gt;
    case AVERAGE:&lt;br /&gt;
      rc = (p1.getAverage() &amp;lt; p2.getAverage()) ? -1 : 1;&lt;br /&gt;
      break;&lt;br /&gt;
    }&lt;br /&gt;
    if (direction == DESCENDING) {&lt;br /&gt;
      rc = -rc;&lt;br /&gt;
    }&lt;br /&gt;
    return rc;&lt;br /&gt;
  }&lt;br /&gt;
  public void setColumn(int column) {&lt;br /&gt;
    this.column = column;&lt;br /&gt;
  }&lt;br /&gt;
  public void setDirection(int direction) {&lt;br /&gt;
    this.direction = direction;&lt;br /&gt;
  }&lt;br /&gt;
  public void reverseDirection() {&lt;br /&gt;
    direction = 1 - direction;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
class Student {&lt;br /&gt;
  private String firstName;&lt;br /&gt;
  private String lastName;&lt;br /&gt;
  private float average;&lt;br /&gt;
  public Student(String firstName, String lastName, float a) {&lt;br /&gt;
    this.firstName = firstName;&lt;br /&gt;
    this.lastName = lastName;&lt;br /&gt;
    this.average = a;&lt;br /&gt;
  }&lt;br /&gt;
  public float getAverage() {&lt;br /&gt;
    return average;&lt;br /&gt;
  }&lt;br /&gt;
  public String getFirstName() {&lt;br /&gt;
    return firstName;&lt;br /&gt;
  }&lt;br /&gt;
  public String getLastName() {&lt;br /&gt;
    return lastName;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- end source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== TableColumn: setText(String s) ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
import org.eclipse.swt.SWT;&lt;br /&gt;
import org.eclipse.swt.layout.FillLayout;&lt;br /&gt;
import org.eclipse.swt.widgets.Display;&lt;br /&gt;
import org.eclipse.swt.widgets.Shell;&lt;br /&gt;
import org.eclipse.swt.widgets.Table;&lt;br /&gt;
import org.eclipse.swt.widgets.TableColumn;&lt;br /&gt;
import org.eclipse.swt.widgets.TableItem;&lt;br /&gt;
public class MainClass {&lt;br /&gt;
  public static void main(String[] a) {&lt;br /&gt;
    final Display d = new Display();&lt;br /&gt;
    final Shell s = new Shell(d);&lt;br /&gt;
    s.setSize(250, 200);&lt;br /&gt;
    s.setText(&amp;quot;A Table Shell Example&amp;quot;);&lt;br /&gt;
    s.setLayout(new FillLayout());&lt;br /&gt;
    Table t = new Table(s, SWT.BORDER);&lt;br /&gt;
    TableColumn tc1 = new TableColumn(t, SWT.CENTER);&lt;br /&gt;
    TableColumn tc2 = new TableColumn(t, SWT.CENTER);&lt;br /&gt;
    TableColumn tc3 = new TableColumn(t, SWT.CENTER);&lt;br /&gt;
    tc1.setText(&amp;quot;First Name&amp;quot;);&lt;br /&gt;
    tc2.setText(&amp;quot;Last Name&amp;quot;);&lt;br /&gt;
    tc3.setText(&amp;quot;Address&amp;quot;);&lt;br /&gt;
    tc1.setWidth(70);&lt;br /&gt;
    tc2.setWidth(70);&lt;br /&gt;
    tc3.setWidth(80);&lt;br /&gt;
    t.setHeaderVisible(true);&lt;br /&gt;
    TableItem item1 = new TableItem(t, SWT.NONE);&lt;br /&gt;
    item1.setText(new String[] { &amp;quot;A&amp;quot;, &amp;quot;B&amp;quot;, &amp;quot;Address 1&amp;quot; });&lt;br /&gt;
    TableItem item2 = new TableItem(t, SWT.NONE);&lt;br /&gt;
    item2.setText(new String[] { &amp;quot;C&amp;quot;, &amp;quot;D&amp;quot;, &amp;quot;Address 2&amp;quot; });&lt;br /&gt;
    TableItem item3 = new TableItem(t, SWT.NONE);&lt;br /&gt;
    item3.setText(new String[] { &amp;quot;E&amp;quot;, &amp;quot;F&amp;quot;, &amp;quot;Address 3&amp;quot; });&lt;br /&gt;
    s.open();&lt;br /&gt;
    while (!s.isDisposed()) {&lt;br /&gt;
      if (!d.readAndDispatch())&lt;br /&gt;
        d.sleep();&lt;br /&gt;
    }&lt;br /&gt;
    d.dispose();&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- end source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== TableColumn: setWidth(int width) ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
import org.eclipse.swt.SWT;&lt;br /&gt;
import org.eclipse.swt.layout.FillLayout;&lt;br /&gt;
import org.eclipse.swt.widgets.Display;&lt;br /&gt;
import org.eclipse.swt.widgets.Shell;&lt;br /&gt;
import org.eclipse.swt.widgets.Table;&lt;br /&gt;
import org.eclipse.swt.widgets.TableColumn;&lt;br /&gt;
import org.eclipse.swt.widgets.TableItem;&lt;br /&gt;
public class MainClass {&lt;br /&gt;
  public static void main(String[] a) {&lt;br /&gt;
    final Display d = new Display();&lt;br /&gt;
    final Shell s = new Shell(d);&lt;br /&gt;
    s.setSize(250, 200);&lt;br /&gt;
    s.setText(&amp;quot;A Table Shell Example&amp;quot;);&lt;br /&gt;
    s.setLayout(new FillLayout());&lt;br /&gt;
    Table t = new Table(s, SWT.BORDER);&lt;br /&gt;
    TableColumn tc1 = new TableColumn(t, SWT.CENTER);&lt;br /&gt;
    TableColumn tc2 = new TableColumn(t, SWT.CENTER);&lt;br /&gt;
    TableColumn tc3 = new TableColumn(t, SWT.CENTER);&lt;br /&gt;
    tc1.setText(&amp;quot;First Name&amp;quot;);&lt;br /&gt;
    tc2.setText(&amp;quot;Last Name&amp;quot;);&lt;br /&gt;
    tc3.setText(&amp;quot;Address&amp;quot;);&lt;br /&gt;
    tc1.setWidth(70);&lt;br /&gt;
    tc2.setWidth(70);&lt;br /&gt;
    tc3.setWidth(80);&lt;br /&gt;
    t.setHeaderVisible(true);&lt;br /&gt;
    TableItem item1 = new TableItem(t, SWT.NONE);&lt;br /&gt;
    item1.setText(new String[] { &amp;quot;A&amp;quot;, &amp;quot;B&amp;quot;, &amp;quot;Address 1&amp;quot; });&lt;br /&gt;
    TableItem item2 = new TableItem(t, SWT.NONE);&lt;br /&gt;
    item2.setText(new String[] { &amp;quot;C&amp;quot;, &amp;quot;D&amp;quot;, &amp;quot;Address 2&amp;quot; });&lt;br /&gt;
    TableItem item3 = new TableItem(t, SWT.NONE);&lt;br /&gt;
    item3.setText(new String[] { &amp;quot;E&amp;quot;, &amp;quot;F&amp;quot;, &amp;quot;Address 3&amp;quot; });&lt;br /&gt;
    s.open();&lt;br /&gt;
    while (!s.isDisposed()) {&lt;br /&gt;
      if (!d.readAndDispatch())&lt;br /&gt;
        d.sleep();&lt;br /&gt;
    }&lt;br /&gt;
    d.dispose();&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- end source code --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>