Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 7fbaf9edbaf85fbd4640bb8caad3e7992cde57e6 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                      

    
                                                        


                                                                        
                                                            


                                          



                                                        


        



                                                
                                           

                  

                                                    
                                              
                                                               
                                                           
                                                 
                                                       
           
              





                                                                     

         
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>

<!--
    Copyright (c) 2007, 2011 IBM Corporation and others.

    This program and the accompanying materials
    are made available under the terms of the Eclipse Public License 2.0
    which accompanies this distribution, and is available at
    https://www.eclipse.org/legal/epl-2.0/

    SPDX-License-Identifier: EPL-2.0
   
    Contributors:
        IBM Corporation - initial API and implementation
 -->

<plugin>

   <extension
   		point="org.eclipse.ui.keywords">
    <keyword
            label="%PreferenceKeywords.PROXY"
            id="org.eclipse.ui.net.proxy"/>
   </extension>   
   
  <extension point="org.eclipse.ui.preferencePages">
    <page
      id = "org.eclipse.ui.net.NetPreferences"
      class = "org.eclipse.ui.internal.net.ProxyPreferencePage"
      category = "org.eclipse.ui.preferencePages.Workbench"
      name = "%PLUGIN_INTERNET_PREFERENCE_TITLE">
      <keywordReference id="org.eclipse.ui.net.proxy"/>
    </page>
  </extension>
  <extension
        point="org.eclipse.core.net.authenticator">
     <authenticator
           class="org.eclipse.ui.internal.net.auth.NetAuthenticator">
     </authenticator>
  </extension>

</plugin>

Back to the top