Package jadex.base.gui.reposearch
Class RepositorySearchPanel.RepositoryInfo
- java.lang.Object
- 
- jadex.base.gui.reposearch.RepositorySearchPanel.RepositoryInfo
 
- 
- Enclosing class:
- RepositorySearchPanel
 
 public static class RepositorySearchPanel.RepositoryInfo extends java.lang.ObjectRepository info class.
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.lang.StringcachedirThe repo cache dir.protected org.apache.maven.index.context.IndexingContextcontextThe indexing context.protected booleanidxupFlag if index update is running.protected java.lang.StringindexdirThe repo index dir.protected java.lang.StringnameThe name (and id).protected java.lang.StringurlThe repo url.
 - 
Constructor SummaryConstructors Constructor Description RepositoryInfo(java.lang.String name, java.lang.String url)Create a new repository info.RepositoryInfo(java.lang.String name, java.lang.String url, java.lang.String cachedir, java.lang.String indexdir)Create a new repository info.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)Test if equals.java.lang.StringgetCachedir()Get the cachedir.org.apache.maven.index.context.IndexingContextgetContext()Get the context.java.lang.StringgetIndexdir()Get the indexdir.java.lang.StringgetName()Get the name.java.lang.StringgetUrl()Get the url.inthashCode()Get the hashcode.booleanisIndexUpdating()Get the indexUpdating.voidsetCachedir(java.lang.String cachedir)Set the cachedir.voidsetContext(org.apache.maven.index.context.IndexingContext context)Set the context.voidsetIndexdir(java.lang.String indexdir)Set the indexdir.voidsetIndexUpdating(boolean indexUpdating)Set the indexUpdating.voidsetName(java.lang.String name)Set the name.voidsetUrl(java.lang.String url)Set the url.java.lang.StringtoString()Get the string representation.
 
- 
- 
- 
Field Detail- 
nameprotected java.lang.String name The name (and id).
 - 
urlprotected java.lang.String url The repo url.
 - 
cachedirprotected java.lang.String cachedir The repo cache dir.
 - 
indexdirprotected java.lang.String indexdir The repo index dir.
 - 
contextprotected org.apache.maven.index.context.IndexingContext context The indexing context.
 - 
idxupprotected boolean idxup Flag if index update is running.
 
- 
 - 
Method Detail- 
getNamepublic java.lang.String getName() Get the name.- Returns:
- The name.
 
 - 
setNamepublic void setName(java.lang.String name) Set the name.- Parameters:
- name- The name to set.
 
 - 
getUrlpublic java.lang.String getUrl() Get the url.- Returns:
- The url.
 
 - 
setUrlpublic void setUrl(java.lang.String url) Set the url.- Parameters:
- url- The url to set.
 
 - 
getCachedirpublic java.lang.String getCachedir() Get the cachedir.- Returns:
- The cachedir.
 
 - 
setCachedirpublic void setCachedir(java.lang.String cachedir) Set the cachedir.- Parameters:
- cachedir- The cachedir to set.
 
 - 
getIndexdirpublic java.lang.String getIndexdir() Get the indexdir.- Returns:
- The indexdir.
 
 - 
setIndexdirpublic void setIndexdir(java.lang.String indexdir) Set the indexdir.- Parameters:
- indexdir- The indexdir to set.
 
 - 
getContextpublic org.apache.maven.index.context.IndexingContext getContext() Get the context.- Returns:
- The context.
 
 - 
setContextpublic void setContext(org.apache.maven.index.context.IndexingContext context) Set the context.- Parameters:
- context- The context to set.
 
 - 
isIndexUpdatingpublic boolean isIndexUpdating() Get the indexUpdating.- Returns:
- The indexUpdating.
 
 - 
setIndexUpdatingpublic void setIndexUpdating(boolean indexUpdating) Set the indexUpdating.- Parameters:
- indexUpdating- The indexUpdating to set.
 
 - 
toStringpublic java.lang.String toString() Get the string representation.- Overrides:
- toStringin class- java.lang.Object
- Returns:
- The string representation.
 
 - 
hashCodepublic int hashCode() Get the hashcode.- Overrides:
- hashCodein class- java.lang.Object
 
 - 
equalspublic boolean equals(java.lang.Object obj) Test if equals.- Overrides:
- equalsin class- java.lang.Object
 
 
- 
 
-