Clojure defrecord和私人领域

时间:2011-04-27 11:23:46

标签: swing clojure presentation-model

我经常使用Martin Fowler的Presentation Model模式实现我的Java swing GUI。

以下是一个例子:

import java.awt.BorderLayout;
import java.awt.event.ActionListener;
import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.ListModel;

interface MainView {
    void configurationButtonAddActionListener(ActionListener actionListener);

    void directoryLabelSetText(String text);

    ListModel fileListGetModel();

    void setVisible(final boolean visible);
}

class MainFrame
        extends JFrame
        implements MainView {
    private final JButton configurationButton = new JButton("Configuration...");
    private final JLabel directoryLabel = new JLabel();
    private final JList fileList = new JList();

    public MainFrame(final String title) {
        super(title);

        final JPanel mainPanel = new JPanel(new BorderLayout());
        add(mainPanel);
        mainPanel.setBorder(BorderFactory.createEmptyBorder(12, 12, 12, 12));

        mainPanel.add(directoryLabel, BorderLayout.NORTH);
        mainPanel.add(new JScrollPane(fileList));
        mainPanel.add(configurationButton, BorderLayout.SOUTH);

        setSize(800, 600);
        setLocationRelativeTo(null);
    }

    @Override
    public void configurationButtonAddActionListener(final ActionListener actionListener) {
        configurationButton.addActionListener(actionListener);
    }

    @Override
    public void directoryLabelSetText(final String text) {
        directoryLabel.setText(text);
    }

    @Override
    public ListModel fileListGetModel() {
        return fileList.getModel();
    }
}

然后可以将接口传递给负责处理视图上所有操作的演示者类。模拟版本可以传递到演示者进行测试,视图非常简单,从理论上讲,它不需要进行单元测试。

我正在尝试使用defrecord在Clojure中执行类似的操作:

(ns mainframe
 (:gen-class)
 (:import
   [java.awt BorderLayout]
   [javax.swing JButton JFrame JLabel JList JPanel JScrollPane]))

(if *compile-files*
  (set! *warn-on-reflection* true))

(defprotocol MainView
  (directory-label-set-text [this text])
  (set-visible [this visible]))

(defrecord mainframe [^JFrame frame
                      directory-label
                      file-list
                      configuration-button]
  MainView
  (directory-label-set-text [this text]
    (.setText directory-label text))
  (set-visible [this visible]
    (.setVisible frame visible)))

(defn create-main-frame
  [title]
  (let [directory-label (JLabel.)

        file-list (JList.)

        configuration-button (JButton. "Configuration...")

        main-panel (doto (JPanel. (BorderLayout.))
                     (.add directory-label BorderLayout/NORTH)
                     (.add (JScrollPane. file-list))
                     (.add configuration-button BorderLayout/SOUTH))

        frame (doto (JFrame.)
                (.setTitle title)
                (.setDefaultCloseOperation JFrame/EXIT_ON_CLOSE)
                (.add main-panel)
                (.setSize 800 600)
                (.setLocationRelativeTo nil))]
    (mainframe. frame directory-label file-list configuration-button)))

我可以使用defprotocoldefrecord来完成界面和“课程”的唯一方法。有没有更好的办法?有没有办法让defrecord中包含组件(JButton,JLabel,JList)的“字段”变为私有?我不喜欢公开实现细节。

1 个答案:

答案 0 :(得分:3)

对于这些实现,您可能需要deftype而不是defrecorddefrecord更多地是关于数据,而deftype则用于实现某些接口背后的细节。我知道,这听起来有点模糊,但这是我对http://clojure.org/datatypes的解释。我认为你的框架属于第二类。

我不会花太多时间试图隐藏东西。请勿触摸类型字段(除非在接口函数内)。仅使用接口函数与类型进行交互。那么这个领域在技术上是私人的还是公共的并不重要。 (再次:参见http://clojure.org/datatypes,关于意见的部分)