--- title: Creating a Server-Side Component order: 3 layout: page --- [[gwt.server-side]] = Creating a Server-Side Component Typical server-side Vaadin applications use server-side components that are rendered on the client-side using their counterpart widgets. A server-side component must manage state synchronization between the widget on the client-side, in addition to any server-side logic. [[gwt.server-side.basic]] == Basic Server-Side Component The component state is usually managed by a __shared state__, described later in <>. ---- public class MyComponent extends AbstractComponent { public MyComponent() { getState().setText("This is MyComponent"); } @Override protected MyComponentState getState() { return (MyComponentState) super.getState(); } } ---- '>0.8-stable Mirror of redmine code source: https://github.com/redmine/redminewww-data
summaryrefslogtreecommitdiffstats
path: root/test/integration/routing/enumerations_test.rb
blob: 893d7b61a1d0b58213992aeee9c490a80c24ead3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# frozen_string_literal: true

# Redmine - project management software
# Copyright (C) 2006-2017  Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

require File.expand_path('../../../test_helper', __FILE__)

class RoutingEnumerationsTest < Redmine::RoutingTest
  def test_enumerations
    should_route 'GET /enumerations' => 'enumerations#index'
    should_route 'GET /enumerations/new' => 'enumerations#new'
    should_route 'POST /enumerations' => 'enumerations#create'

    should_route 'GET /enumerations/2/edit' => 'enumerations#edit', :id => '2'
    should_route 'PUT /enumerations/2' => 'enumerations#update', :id => '2'
    should_route 'DELETE /enumerations/2' => 'enumerations#destroy', :id => '2'
  end
end