<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://jexp.ru/index.php?action=history&amp;feed=atom&amp;title=Java%2FSWT_JFace_Eclipse%2FSash</id>
		<title>Java/SWT JFace Eclipse/Sash - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://jexp.ru/index.php?action=history&amp;feed=atom&amp;title=Java%2FSWT_JFace_Eclipse%2FSash"/>
		<link rel="alternate" type="text/html" href="http://jexp.ru/index.php?title=Java/SWT_JFace_Eclipse/Sash&amp;action=history"/>
		<updated>2026-04-10T17:49:45Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://jexp.ru/index.php?title=Java/SWT_JFace_Eclipse/Sash&amp;diff=5708&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://jexp.ru/index.php?title=Java/SWT_JFace_Eclipse/Sash&amp;diff=5708&amp;oldid=prev"/>
				<updated>2010-06-01T05:57:06Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&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;Версия 05:57, 1 июня 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>
		<author><name>Admin</name></author>	</entry>

	<entry>
		<id>http://jexp.ru/index.php?title=Java/SWT_JFace_Eclipse/Sash&amp;diff=5707&amp;oldid=prev</id>
		<title> в 18:01, 31 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://jexp.ru/index.php?title=Java/SWT_JFace_Eclipse/Sash&amp;diff=5707&amp;oldid=prev"/>
				<updated>2010-05-31T18:01:43Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Create a sash (allow it to be moved) ==&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;
/*&lt;br /&gt;
 * Sash example snippet: create a sash (allow it to be moved)&lt;br /&gt;
 *&lt;br /&gt;
 * For a list of all SWT example snippets see&lt;br /&gt;
 * http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-swt-home/dev.html#snippets&lt;br /&gt;
 */&lt;br /&gt;
import org.eclipse.swt.SWT;&lt;br /&gt;
import org.eclipse.swt.widgets.Display;&lt;br /&gt;
import org.eclipse.swt.widgets.Event;&lt;br /&gt;
import org.eclipse.swt.widgets.Listener;&lt;br /&gt;
import org.eclipse.swt.widgets.Sash;&lt;br /&gt;
import org.eclipse.swt.widgets.Shell;&lt;br /&gt;
public class Snippet54 {&lt;br /&gt;
  public static void main(String[] args) {&lt;br /&gt;
    Display display = new Display();&lt;br /&gt;
    Shell shell = new Shell(display);&lt;br /&gt;
    final Sash sash = new Sash(shell, SWT.BORDER | SWT.VERTICAL);&lt;br /&gt;
    sash.setBounds(10, 10, 32, 100);&lt;br /&gt;
    sash.addListener(SWT.Selection, new Listener() {&lt;br /&gt;
      public void handleEvent(Event e) {&lt;br /&gt;
        sash.setBounds(e.x, e.y, e.width, e.height);&lt;br /&gt;
      }&lt;br /&gt;
    });&lt;br /&gt;
    shell.open();&lt;br /&gt;
    sash.setFocus();&lt;br /&gt;
    while (!shell.isDisposed()) {&lt;br /&gt;
      if (!display.readAndDispatch())&lt;br /&gt;
        display.sleep();&lt;br /&gt;
    }&lt;br /&gt;
    display.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;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Demonstrates a Sash ==&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;
//Send questions, comments, bug reports, etc. to the authors:&lt;br /&gt;
//Rob Warner (rwarner@interspatial.ru)&lt;br /&gt;
//Robert Harris (rbrt_harris@yahoo.ru)&lt;br /&gt;
import org.eclipse.swt.*;&lt;br /&gt;
import org.eclipse.swt.events.*;&lt;br /&gt;
import org.eclipse.swt.layout.*;&lt;br /&gt;
import org.eclipse.swt.widgets.*;&lt;br /&gt;
/**&lt;br /&gt;
 * This class demonstrates a Sash&lt;br /&gt;
 */&lt;br /&gt;
public class SashExampleThree {&lt;br /&gt;
  /**&lt;br /&gt;
   * Runs the application&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;Sash Three&amp;quot;);&lt;br /&gt;
    createContents(shell);&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;
  /**&lt;br /&gt;
   * Creates the contents of the main window&lt;br /&gt;
   * &lt;br /&gt;
   * @param composite the parent composite&lt;br /&gt;
   */&lt;br /&gt;
  public void createContents(Composite composite) {&lt;br /&gt;
    composite.setLayout(new FormLayout());&lt;br /&gt;
    // Create the sash first, so the other controls&lt;br /&gt;
    // can be attached to it.&lt;br /&gt;
    final Sash sash = new Sash(composite, SWT.VERTICAL);&lt;br /&gt;
    FormData data = new FormData();&lt;br /&gt;
    data.top = new FormAttachment(0, 0); // Attach to top&lt;br /&gt;
    data.bottom = new FormAttachment(100, 0); // Attach to bottom&lt;br /&gt;
    data.left = new FormAttachment(50, 0); // Attach halfway across&lt;br /&gt;
    sash.setLayoutData(data);&lt;br /&gt;
    sash.addSelectionListener(new SelectionAdapter() {&lt;br /&gt;
      public void widgetSelected(SelectionEvent event) {&lt;br /&gt;
        // We reattach to the left edge, and we use the x value of the event to&lt;br /&gt;
        // determine the offset from the left&lt;br /&gt;
        ((FormData) sash.getLayoutData()).left = new FormAttachment(0, event.x);&lt;br /&gt;
        // Until the parent window does a layout, the sash will not be redrawn in&lt;br /&gt;
        // its new location.&lt;br /&gt;
        sash.getParent().layout();&lt;br /&gt;
      }&lt;br /&gt;
    });&lt;br /&gt;
    // Create the first text box and attach its right edge&lt;br /&gt;
    // to the sash&lt;br /&gt;
    Text one = new Text(composite, SWT.BORDER);&lt;br /&gt;
    data = new FormData();&lt;br /&gt;
    data.top = new FormAttachment(0, 0);&lt;br /&gt;
    data.bottom = new FormAttachment(100, 0);&lt;br /&gt;
    data.left = new FormAttachment(0, 0);&lt;br /&gt;
    data.right = new FormAttachment(sash, 0);&lt;br /&gt;
    one.setLayoutData(data);&lt;br /&gt;
    // Create the second text box and attach its left edge&lt;br /&gt;
    // to the sash&lt;br /&gt;
    Text Three = new Text(composite, SWT.BORDER);&lt;br /&gt;
    data = new FormData();&lt;br /&gt;
    data.top = new FormAttachment(0, 0);&lt;br /&gt;
    data.bottom = new FormAttachment(100, 0);&lt;br /&gt;
    data.left = new FormAttachment(sash, 0);&lt;br /&gt;
    data.right = new FormAttachment(100, 0);&lt;br /&gt;
    Three.setLayoutData(data);&lt;br /&gt;
  }&lt;br /&gt;
  /**&lt;br /&gt;
   * Application entry point&lt;br /&gt;
   * &lt;br /&gt;
   * @param args the command line arguments&lt;br /&gt;
   */&lt;br /&gt;
  public static void main(String[] args) {&lt;br /&gt;
    new SashExampleThree().run();&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;
== Demonstrates a Sash 2 ==&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;
//Send questions, comments, bug reports, etc. to the authors:&lt;br /&gt;
//Rob Warner (rwarner@interspatial.ru)&lt;br /&gt;
//Robert Harris (rbrt_harris@yahoo.ru)&lt;br /&gt;
import org.eclipse.swt.*;&lt;br /&gt;
import org.eclipse.swt.layout.*;&lt;br /&gt;
import org.eclipse.swt.widgets.*;&lt;br /&gt;
/**&lt;br /&gt;
 * This class demonstrates a Sash&lt;br /&gt;
 */&lt;br /&gt;
public class SashExampleOne {&lt;br /&gt;
  /**&lt;br /&gt;
   * Runs the application&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;Sash One&amp;quot;);&lt;br /&gt;
    createContents(shell);&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;
  /**&lt;br /&gt;
   * Creates the contents of the main window&lt;br /&gt;
   * &lt;br /&gt;
   * @param composite the parent composite&lt;br /&gt;
   */&lt;br /&gt;
  public void createContents(Composite composite) {&lt;br /&gt;
    composite.setLayout(new FillLayout());&lt;br /&gt;
    new Text(composite, SWT.BORDER);&lt;br /&gt;
    new Sash(composite, SWT.VERTICAL);&lt;br /&gt;
    new Text(composite, SWT.BORDER);&lt;br /&gt;
  }&lt;br /&gt;
  /**&lt;br /&gt;
   * Application entry point&lt;br /&gt;
   * &lt;br /&gt;
   * @param args the command line arguments&lt;br /&gt;
   */&lt;br /&gt;
  public static void main(String[] args) {&lt;br /&gt;
    new SashExampleOne().run();&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;
== Demonstrates a Sash 3 ==&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;
//Send questions, comments, bug reports, etc. to the authors:&lt;br /&gt;
//Rob Warner (rwarner@interspatial.ru)&lt;br /&gt;
//Robert Harris (rbrt_harris@yahoo.ru)&lt;br /&gt;
import org.eclipse.swt.*;&lt;br /&gt;
import org.eclipse.swt.layout.*;&lt;br /&gt;
import org.eclipse.swt.widgets.*;&lt;br /&gt;
/**&lt;br /&gt;
 * This class demonstrates a Sash&lt;br /&gt;
 */&lt;br /&gt;
public class SashExampleTwo {&lt;br /&gt;
  /**&lt;br /&gt;
   * Runs the application&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;Sash Two&amp;quot;);&lt;br /&gt;
    createContents(shell);&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;
  /**&lt;br /&gt;
   * Creates the contents of the main window&lt;br /&gt;
   * &lt;br /&gt;
   * @param composite the parent composite&lt;br /&gt;
   */&lt;br /&gt;
  public void createContents(Composite composite) {&lt;br /&gt;
    composite.setLayout(new FormLayout());&lt;br /&gt;
    // Create the sash first, so the other controls&lt;br /&gt;
    // can be attached to it.&lt;br /&gt;
    Sash sash = new Sash(composite, SWT.VERTICAL);&lt;br /&gt;
    FormData data = new FormData();&lt;br /&gt;
    data.top = new FormAttachment(0, 0); // Attach to top&lt;br /&gt;
    data.bottom = new FormAttachment(100, 0); // Attach to bottom&lt;br /&gt;
    data.left = new FormAttachment(50, 0); // Attach halfway across&lt;br /&gt;
    sash.setLayoutData(data);&lt;br /&gt;
    // Create the first text box and attach its right edge&lt;br /&gt;
    // to the sash&lt;br /&gt;
    Text one = new Text(composite, SWT.BORDER);&lt;br /&gt;
    data = new FormData();&lt;br /&gt;
    data.top = new FormAttachment(0, 0);&lt;br /&gt;
    data.bottom = new FormAttachment(100, 0);&lt;br /&gt;
    data.left = new FormAttachment(0, 0);&lt;br /&gt;
    data.right = new FormAttachment(sash, 0);&lt;br /&gt;
    one.setLayoutData(data);&lt;br /&gt;
    // Create the second text box and attach its left edge&lt;br /&gt;
    // to the sash&lt;br /&gt;
    Text two = new Text(composite, SWT.BORDER);&lt;br /&gt;
    data = new FormData();&lt;br /&gt;
    data.top = new FormAttachment(0, 0);&lt;br /&gt;
    data.bottom = new FormAttachment(100, 0);&lt;br /&gt;
    data.left = new FormAttachment(sash, 0);&lt;br /&gt;
    data.right = new FormAttachment(100, 0);&lt;br /&gt;
    two.setLayoutData(data);&lt;br /&gt;
  }&lt;br /&gt;
  /**&lt;br /&gt;
   * Application entry point&lt;br /&gt;
   * &lt;br /&gt;
   * @param args the command line arguments&lt;br /&gt;
   */&lt;br /&gt;
  public static void main(String[] args) {&lt;br /&gt;
    new SashExampleTwo().run();&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;
== Displays a vertical sash ==&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;
//Send questions, comments, bug reports, etc. to the authors:&lt;br /&gt;
//Rob Warner (rwarner@interspatial.ru)&lt;br /&gt;
//Robert Harris (rbrt_harris@yahoo.ru)&lt;br /&gt;
import org.eclipse.swt.*;&lt;br /&gt;
import org.eclipse.swt.layout.*;&lt;br /&gt;
import org.eclipse.swt.widgets.*;&lt;br /&gt;
/**&lt;br /&gt;
 * This class displays a vertical sash&lt;br /&gt;
 */&lt;br /&gt;
public class VerticalSash {&lt;br /&gt;
  public static void main(String[] args) {&lt;br /&gt;
    new VerticalSash().run();&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;Vertical Sash&amp;quot;);&lt;br /&gt;
    shell.setLayout(new FillLayout());&lt;br /&gt;
    Sash sash = new Sash(shell, SWT.VERTICAL);&lt;br /&gt;
    new Composite(shell, SWT.NONE);&lt;br /&gt;
    new Composite(shell, SWT.NONE);&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;
}&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;
== Sash Example ==&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;
 * All Right Reserved. &lt;br /&gt;
 * Copyright (c) 1998, 2004 Jackwind Li Guojie&lt;br /&gt;
 * &lt;br /&gt;
 * Created on 2004-4-7 13:28:17 by JACK&lt;br /&gt;
 * $Id$&lt;br /&gt;
 * &lt;br /&gt;
 *****************************************************************************/&lt;br /&gt;
/*&lt;br /&gt;
 * Sash example snippet: create a sash (allow it to be moved)&lt;br /&gt;
 *&lt;br /&gt;
 * For a list of all SWT example snippets see&lt;br /&gt;
 * http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-swt-home/dev.html#snippets&lt;br /&gt;
 */&lt;br /&gt;
import org.eclipse.swt.SWT;&lt;br /&gt;
import org.eclipse.swt.widgets.Display;&lt;br /&gt;
import org.eclipse.swt.widgets.Event;&lt;br /&gt;
import org.eclipse.swt.widgets.Listener;&lt;br /&gt;
import org.eclipse.swt.widgets.Sash;&lt;br /&gt;
import org.eclipse.swt.widgets.Shell;&lt;br /&gt;
public class SashExample {&lt;br /&gt;
public static void main (String [] args) {&lt;br /&gt;
  Display display = new Display ();&lt;br /&gt;
  Shell shell = new Shell (display);&lt;br /&gt;
  final Sash sash = new Sash (shell, SWT.BORDER | SWT.VERTICAL);&lt;br /&gt;
  sash.setBounds (10, 10, 15, 60);&lt;br /&gt;
  sash.addListener (SWT.Selection, new Listener () {&lt;br /&gt;
    public void handleEvent (Event e) {&lt;br /&gt;
      System.out.println(&amp;quot;Selected. &amp;quot;);&lt;br /&gt;
      sash.setBounds (e.x, e.y, e.width, e.height);&lt;br /&gt;
    }&lt;br /&gt;
  });&lt;br /&gt;
  shell.open ();&lt;br /&gt;
  sash.setFocus ();&lt;br /&gt;
  while (!shell.isDisposed ()) {&lt;br /&gt;
    if (!display.readAndDispatch ()) display.sleep ();&lt;br /&gt;
  }&lt;br /&gt;
  display.dispose ();&lt;br /&gt;
}&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>
			</entry>

	</feed>