2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package org.jetbrains.idea.svn.update;
18 import org.jetbrains.idea.svn.SvnVcs;
19 import org.jetbrains.idea.svn.info.Info;
20 import org.tmatesoft.svn.core.SVNException;
21 import org.tmatesoft.svn.core.SVNURL;
22 import org.tmatesoft.svn.core.wc.SVNRevision;
26 public class UpdateRootInfo {
28 private SVNRevision myRevision;
29 private boolean myUpdateToSpecifiedRevision = false;
31 public UpdateRootInfo(File file, SvnVcs vcs) {
32 myRevision = SVNRevision.HEAD;
34 Info info = vcs.getInfo(file);
35 myUrl = info != null && info.getURL() != null ? info.getURL().toString() : "";
38 public SVNURL getUrl() {
40 return SVNURL.parseURIEncoded(myUrl);
42 catch (SVNException e) {
47 public String getUrlAsString() {
51 public SVNRevision getRevision() {
55 public boolean isUpdateToRevision() {
56 return myUpdateToSpecifiedRevision;
59 public void setUrl(final String text) {
63 public void setUpdateToRevision(final boolean value) {
64 myUpdateToSpecifiedRevision = value;
67 public void setRevision(final SVNRevision svnRevision) {
68 myRevision =svnRevision;