changedUpdate exception
[fedora-idea.git] / platform / platform-impl / src / com / intellij / ui / PrevNextActionsDescriptor.java
blobe06e88c940a912075a2019abe20dd877b8dce627
1 /*
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.
18 * @author max
20 package com.intellij.ui;
22 public class PrevNextActionsDescriptor {
23 private final String myPrevActionId;
24 private final String myNextActionId;
26 public PrevNextActionsDescriptor(final String nextActionId, final String prevActionId) {
27 myNextActionId = nextActionId;
28 myPrevActionId = prevActionId;
31 public String getNextActionId() {
32 return myNextActionId;
35 public String getPrevActionId() {
36 return myPrevActionId;